diff options
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | build-reader.xml | 5 | ||||
| -rw-r--r-- | build-standalone.xml | 4 |
3 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,4 @@ +# Built artifacts in /dist and /applet. /dist/lib/ /dist/ECTesterReader.jar /dist/ECTesterReader-dist.jar @@ -5,7 +6,9 @@ /dist/ectester-reader.bat /dist/ECTesterStandalone.jar /dist/ECTesterStandalone-dist.jar +/applet/ectester.cap +# Built binaries in /src. /src/**/*.a /src/**/*.o /src/**/*.so diff --git a/build-reader.xml b/build-reader.xml index ec62f6f..98cdef4 100644 --- a/build-reader.xml +++ b/build-reader.xml @@ -71,10 +71,15 @@ nbproject/build-impl.xml file. --> + <target name="-pre-jar"> + <copy file="LICENSE" todir="${build.classes.dir}"/> + </target> + <target name="-post-jar"> <copy file="src/cz/crcs/ectester/scripts/ectester-reader.sh" todir="${dist.dir}"/> <copy file="src/cz/crcs/ectester/scripts/ectester-reader.bat" todir="${dist.dir}"/> </target> + <target name="package" depends="jar"> <property name="store.jar.name" value="ECTesterReader-dist"/> <antcall target="dist-build.package"/> diff --git a/build-standalone.xml b/build-standalone.xml index ea160c8..a4bb434 100644 --- a/build-standalone.xml +++ b/build-standalone.xml @@ -71,6 +71,10 @@ nbproject/build-impl.xml file. --> + <target name="-pre-jar"> + <copy file="LICENSE" todir="${build.classes.dir}"/> + </target> + <target name="package" depends="jar"> <property name="store.jar.name" value="ECTesterStandalone-dist"/> <antcall target="dist-build.package"/> |
