Skip to content

Commit a52d9ea

Browse files
committed
HtmlLocker build
1 parent f50826c commit a52d9ea

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

build/build.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,16 @@
2929
<delete file="${jar}" failonerror="false" />
3030
<jar destfile="${jar}" update="false">
3131
<fileset dir="${build}" includes="**" />
32-
32+
<manifest>
33+
<attribute name="Main-Class" value="${executableMainClass}" />
34+
</manifest>
3335
</jar>
3436
</target>
3537
<target name="createDownload" depends="buildJarFile">
3638
<zip destfile="${zip}" basedir="${build}" includes="*.jar,*.txt">
3739
<fileset dir="${documentation}" includes="**" />
3840
</zip>
3941
</target>
40-
4142
<target name="Publish Lambdas">
4243
<property file="properties/lambda.properties" />
4344
<antcall target="createDownload" />
@@ -52,6 +53,10 @@
5253
<property file="properties/extension_methods.properties" />
5354
<antcall target="createDownload" />
5455
</target>
56+
<target name="Publish HtmlLocker">
57+
<property file="properties/html_locker.properties" />
58+
<antcall target="buildJarFile" />
59+
</target>
5560

5661
</project>
5762

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
home=C:/Users/Llewellyn/Documents/GitHub/ApprovalTests.Java
2+
src=${home}/java
3+
build_home=C:/temp/builds
4+
build=${build_home}/build
5+
targetJavaClass=org/approvaltests/webpages/**
6+
executableMainClass=org.approvaltests.webpages.WebPageChangeDetector
7+
jars=${src}/jars
8+
jar=${build}/HtmlLocker.jar
9+
zip=${build}/HtmlLocker.01.zip
10+
excludeTests=true

0 commit comments

Comments
 (0)