Issue #607 - removed references to src directories for plugins that do not have a source directory. The edex build will now build the binlightning plugin when the lightning flag is set to true.
Former-commit-id:ab2c53ae0a
[formerly cd948be11933b849836e3c774e668fa3bf6943ad] Former-commit-id:3b7c761f99
This commit is contained in:
parent
7ace6b7acb
commit
424bbaf0f7
18 changed files with 8 additions and 33 deletions
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
libgluegen-rt.so,\
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
libgluegen-rt.so,\
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
gluegen-rt.dll,\
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
libjhdf5.so
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
jhdf5.dll
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
libjep.so
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
libjep.so
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
jep.dll
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry exported="true" kind="lib" path="postgresql-8.3-603.jdbc3.jar" sourcepath="org.postgressrc.zip"/>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
postgresql-8.3-603.jdbc3.jar,\
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
libmeteoLib.so
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
libmeteoLib.so
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
meteoLib.dll
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
libbignsharp.so
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
libbignsharp.so
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
bignsharp.dll
|
||||
|
|
|
@ -115,8 +115,14 @@ cd ${WORKSPACE}/build.edex
|
|||
if [ $? -ne 0 ]; then
|
||||
exit 1
|
||||
fi
|
||||
/awips2/ant/bin/ant -f build.xml
|
||||
if [ $? -ne 0 ]; then
|
||||
if [ ${LIGHTNING} = true ]; then
|
||||
/awips2/ant/bin/ant -f build.xml -Dlightning=true
|
||||
RC=$?
|
||||
else
|
||||
/awips2/ant/bin/ant -f build.xml
|
||||
RC=$?
|
||||
fi
|
||||
if [ ${RC} -ne 0 ]; then
|
||||
exit 1
|
||||
fi
|
||||
popd
|
||||
|
|
Loading…
Add table
Reference in a new issue