Skip to content

Commit f53e225

Browse files
committed
Merge branch 'atcoder-pull-request-shanto86'
2 parents 296dd83 + 37d22b4 commit f53e225

35 files changed

+743
-264
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Hightail/build
2+
Hightail/dist
3+
Hightail/nbproject/private
4+
hightail.config

Hightail/build.xml

+21
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,27 @@
2121
<zipfileset src="lib/junit.jar" excludes="META-INF/*" />
2222
<zipfileset src="lib/sax2.jar" excludes="META-INF/*" />
2323
<zipfileset src="lib/thumbelina.jar" excludes="META-INF/*" />
24+
<zipfileset src="lib/commons-codec-1.10.jar" excludes="META-INF/*" />
25+
<zipfileset src="lib/commons-io-2.5.jar" excludes="META-INF/*" />
26+
<zipfileset src="lib/commons-lang3-3.5.jar" excludes="META-INF/*" />
27+
<zipfileset src="lib/commons-logging-1.2.jar" excludes="META-INF/*" />
28+
<zipfileset src="lib/cssparser-0.9.21.jar" excludes="META-INF/*" />
29+
<zipfileset src="lib/htmlunit-2.24.jar" excludes="META-INF/*" />
30+
<zipfileset src="lib/htmlunit-core-js-2.23.jar" excludes="META-INF/*" />
31+
<zipfileset src="lib/httpclient-4.5.2.jar" excludes="META-INF/*" />
32+
<zipfileset src="lib/httpcore-4.4.4.jar" excludes="META-INF/*" />
33+
<zipfileset src="lib/httpmime-4.5.2.jar" excludes="META-INF/*" />
34+
<zipfileset src="lib/jetty-io-9.2.20.v20161216.jar" excludes="META-INF/*" />
35+
<zipfileset src="lib/jetty-util-9.2.20.v20161216.jar" excludes="META-INF/*" />
36+
<zipfileset src="lib/neko-htmlunit-2.24.jar" excludes="META-INF/*" />
37+
<zipfileset src="lib/sac-1.3.jar" excludes="META-INF/*" />
38+
<zipfileset src="lib/serializer-2.7.2.jar" excludes="META-INF/*" />
39+
<zipfileset src="lib/websocket-api-9.2.20.v20161216.jar" excludes="META-INF/*" />
40+
<zipfileset src="lib/websocket-client-9.2.20.v20161216.jar" excludes="META-INF/*" />
41+
<zipfileset src="lib/websocket-common-9.2.20.v20161216.jar" excludes="META-INF/*" />
42+
<zipfileset src="lib/xalan-2.7.2.jar" excludes="META-INF/*" />
43+
<zipfileset src="lib/xercesImpl-2.11.0.jar" excludes="META-INF/*" />
44+
<zipfileset src="lib/xml-apis-1.4.01.jar" excludes="META-INF/*" />
2445
<manifest>
2546
<attribute name="Main-Class" value="org.hightail.ui.MainJFrame" />
2647
</manifest>

Hightail/lib/commons-codec-1.10.jar

278 KB
Binary file not shown.

Hightail/lib/commons-io-2.5.jar

204 KB
Binary file not shown.

Hightail/lib/commons-lang3-3.5.jar

469 KB
Binary file not shown.

Hightail/lib/commons-logging-1.2.jar

60.4 KB
Binary file not shown.

Hightail/lib/cssparser-0.9.21.jar

372 KB
Binary file not shown.

Hightail/lib/htmlunit-2.24.jar

1.81 MB
Binary file not shown.
1.16 MB
Binary file not shown.

Hightail/lib/httpclient-4.5.2.jar

719 KB
Binary file not shown.

Hightail/lib/httpcore-4.4.4.jar

319 KB
Binary file not shown.

Hightail/lib/httpmime-4.5.2.jar

40.1 KB
Binary file not shown.
106 KB
Binary file not shown.
368 KB
Binary file not shown.

Hightail/lib/neko-htmlunit-2.24.jar

122 KB
Binary file not shown.

Hightail/lib/sac-1.3.jar

15.4 KB
Binary file not shown.

Hightail/lib/serializer-2.7.2.jar

270 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Hightail/lib/xalan-2.7.2.jar

3.01 MB
Binary file not shown.

Hightail/lib/xercesImpl-2.11.0.jar

1.3 MB
Binary file not shown.

Hightail/lib/xml-apis-1.4.01.jar

215 KB
Binary file not shown.

Hightail/nbproject/build-impl.xml

+21-14
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ is divided into following sections:
4646
<property file="${user.properties.file}"/>
4747
<!-- The two properties below are usually overridden -->
4848
<!-- by the active platform. Just a fallback. -->
49-
<property name="default.javac.source" value="1.4"/>
50-
<property name="default.javac.target" value="1.4"/>
49+
<property name="default.javac.source" value="1.6"/>
50+
<property name="default.javac.target" value="1.6"/>
5151
</target>
5252
<target depends="-pre-init,-init-private,-init-user" name="-init-project">
5353
<property file="nbproject/configs/${config}.properties"/>
@@ -76,7 +76,7 @@ is divided into following sections:
7676
<and>
7777
<isset property="javac.profile"/>
7878
<length length="0" string="${javac.profile}" when="greater"/>
79-
<matches pattern="1\.[89](\..*)?" string="${javac.source}"/>
79+
<matches pattern="((1\.[89])|9)(\..*)?" string="${javac.source}"/>
8080
</and>
8181
</condition>
8282
<condition property="do.archive">
@@ -156,6 +156,7 @@ is divided into following sections:
156156
<property name="application.args" value=""/>
157157
<property name="source.encoding" value="${file.encoding}"/>
158158
<property name="runtime.encoding" value="${source.encoding}"/>
159+
<property name="manifest.encoding" value="${source.encoding}"/>
159160
<condition property="javadoc.encoding.used" value="${javadoc.encoding}">
160161
<and>
161162
<isset property="javadoc.encoding"/>
@@ -191,7 +192,12 @@ is divided into following sections:
191192
</not>
192193
</and>
193194
</condition>
194-
<property name="javac.fork" value="${jdkBug6558476}"/>
195+
<condition else="false" property="javac.fork">
196+
<or>
197+
<istrue value="${jdkBug6558476}"/>
198+
<istrue value="${javac.external.vm}"/>
199+
</or>
200+
</condition>
195201
<property name="jar.index" value="false"/>
196202
<property name="jar.index.metainf" value="${jar.index}"/>
197203
<property name="copylibs.rebase" value="true"/>
@@ -217,6 +223,7 @@ is divided into following sections:
217223
<condition else="" property="testng.debug.mode" value="-mixed">
218224
<istrue value="${junit+testng.available}"/>
219225
</condition>
226+
<property name="java.failonerror" value="true"/>
220227
</target>
221228
<target name="-post-init">
222229
<!-- Empty placeholder for easier customization. -->
@@ -693,7 +700,7 @@ is divided into following sections:
693700
<sequential>
694701
<property environment="env"/>
695702
<resolve name="profiler.current.path" value="${profiler.info.pathvar}"/>
696-
<java classname="@{classname}" dir="${profiler.info.dir}" fork="true" jvm="${profiler.info.jvm}">
703+
<java classname="@{classname}" dir="${profiler.info.dir}" failonerror="${java.failonerror}" fork="true" jvm="${profiler.info.jvm}">
697704
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
698705
<jvmarg value="${profiler.info.jvmargs.agent}"/>
699706
<jvmarg line="${profiler.info.jvmargs}"/>
@@ -768,7 +775,7 @@ is divided into following sections:
768775
<attribute default="${debug.classpath}" name="classpath"/>
769776
<element name="customize" optional="true"/>
770777
<sequential>
771-
<java classname="@{classname}" dir="${work.dir}" fork="true">
778+
<java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true">
772779
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
773780
<jvmarg line="${debug-args-line}"/>
774781
<jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
@@ -795,7 +802,7 @@ is divided into following sections:
795802
<attribute default="jvm" name="jvm"/>
796803
<element name="customize" optional="true"/>
797804
<sequential>
798-
<java classname="@{classname}" dir="${work.dir}" fork="true">
805+
<java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true">
799806
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
800807
<jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
801808
<redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
@@ -834,7 +841,7 @@ is divided into following sections:
834841
</chainedmapper>
835842
</pathconvert>
836843
<taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
837-
<copylibs compress="${jar.compress}" excludeFromCopy="${copylibs.excludes}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" rebase="${copylibs.rebase}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
844+
<copylibs compress="${jar.compress}" excludeFromCopy="${copylibs.excludes}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" manifestencoding="UTF-8" rebase="${copylibs.rebase}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
838845
<fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/>
839846
<manifest>
840847
<attribute name="Class-Path" value="${jar.classpath}"/>
@@ -846,7 +853,7 @@ is divided into following sections:
846853
</target>
847854
<target name="-init-presetdef-jar">
848855
<presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
849-
<jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}">
856+
<jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}" manifestencoding="UTF-8">
850857
<j2seproject1:fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/>
851858
</jar>
852859
</presetdef>
@@ -969,23 +976,23 @@ is divided into following sections:
969976
</target>
970977
<target depends="init" if="do.archive+manifest.available" name="-do-jar-copy-manifest">
971978
<tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
972-
<copy file="${manifest.file}" tofile="${tmp.manifest.file}"/>
979+
<copy encoding="${manifest.encoding}" file="${manifest.file}" outputencoding="UTF-8" tofile="${tmp.manifest.file}"/>
973980
</target>
974981
<target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+main.class.available" name="-do-jar-set-mainclass">
975-
<manifest file="${tmp.manifest.file}" mode="update">
982+
<manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
976983
<attribute name="Main-Class" value="${main.class}"/>
977984
</manifest>
978985
</target>
979986
<target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+profile.available" name="-do-jar-set-profile">
980-
<manifest file="${tmp.manifest.file}" mode="update">
987+
<manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
981988
<attribute name="Profile" value="${javac.profile}"/>
982989
</manifest>
983990
</target>
984991
<target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+splashscreen.available" name="-do-jar-set-splashscreen">
985992
<basename file="${application.splash}" property="splashscreen.basename"/>
986993
<mkdir dir="${build.classes.dir}/META-INF"/>
987994
<copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/>
988-
<manifest file="${tmp.manifest.file}" mode="update">
995+
<manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
989996
<attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/>
990997
</manifest>
991998
</target>
@@ -1180,7 +1187,7 @@ is divided into following sections:
11801187
<target depends="-profile-check" description="Profile a selected class in the IDE." if="profiler.configured" name="profile-test-with-main">
11811188
<fail unless="run.class">Must select one file in the IDE or set run.class</fail>
11821189
<startprofiler/>
1183-
<antcal target="run-test-with-main"/>
1190+
<antcall target="run-test-with-main"/>
11841191
</target>
11851192
<target depends="-profile-check,-profile-applet-pre72" if="profiler.configured" name="profile-applet" unless="profiler.info.jvmargs.agent">
11861193
<fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>

Hightail/nbproject/genfiles.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ build.xml.stylesheet.CRC32=28e38971@1.38.2.45
44
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
55
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
66
nbproject/build-impl.xml.data.CRC32=4a0f91a4
7-
nbproject/build-impl.xml.script.CRC32=fd2becde
8-
nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48
7+
nbproject/build-impl.xml.script.CRC32=d2b3d99d
8+
nbproject/build-impl.xml.stylesheet.CRC32=830a3534@1.80.1.48

Hightail/nbproject/project.properties

+99-99
Original file line numberDiff line numberDiff line change
@@ -1,99 +1,99 @@
1-
annotation.processing.enabled=true
2-
annotation.processing.enabled.in.editor=false
3-
annotation.processing.processors.list=
4-
annotation.processing.run.all.processors=true
5-
annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
6-
application.title=Hightail
7-
application.vendor=D
8-
build.classes.dir=${build.dir}/classes
9-
build.classes.excludes=**/*.java,**/*.form
10-
# This directory is removed when the project is cleaned:
11-
build.dir=build
12-
build.generated.dir=${build.dir}/generated
13-
build.generated.sources.dir=${build.dir}/generated-sources
14-
# Only compile against the classpath explicitly listed here:
15-
build.sysclasspath=ignore
16-
build.test.classes.dir=${build.dir}/test/classes
17-
build.test.results.dir=${build.dir}/test/results
18-
# Uncomment to specify the preferred debugger connection transport:
19-
#debug.transport=dt_socket
20-
debug.classpath=\
21-
${run.classpath}
22-
debug.test.classpath=\
23-
${run.test.classpath}
24-
# This directory is removed when the project is cleaned:
25-
dist.dir=dist
26-
dist.jar=${dist.dir}/Hightail.jar
27-
dist.javadoc.dir=${dist.dir}/javadoc
28-
endorsed.classpath=
29-
excludes=
30-
file.reference.filterbuilder.jar=lib/filterbuilder.jar
31-
file.reference.htmllexer.jar=lib/htmllexer.jar
32-
file.reference.htmlparser.jar=lib/htmlparser.jar
33-
file.reference.junit.jar=lib/junit.jar
34-
file.reference.sax2.jar=lib/sax2.jar
35-
file.reference.thumbelina.jar=lib/thumbelina.jar
36-
includes=**
37-
jar.archive.disabled=${jnlp.enabled}
38-
jar.compress=false
39-
jar.index=${jnlp.enabled}
40-
javac.classpath=\
41-
${file.reference.filterbuilder.jar}:\
42-
${file.reference.htmllexer.jar}:\
43-
${file.reference.htmlparser.jar}:\
44-
${file.reference.junit.jar}:\
45-
${file.reference.sax2.jar}:\
46-
${file.reference.thumbelina.jar}:\
47-
${libs.beans-binding.classpath}
48-
# Space-separated list of extra javac options
49-
javac.compilerargs=
50-
javac.deprecation=false
51-
javac.processorpath=\
52-
${javac.classpath}
53-
javac.source=1.8
54-
javac.target=1.8
55-
javac.test.classpath=\
56-
${javac.classpath}:\
57-
${build.classes.dir}:\
58-
${libs.junit.classpath}:\
59-
${libs.junit_4.classpath}
60-
javac.test.processorpath=\
61-
${javac.test.classpath}
62-
javadoc.additionalparam=
63-
javadoc.author=false
64-
javadoc.encoding=${source.encoding}
65-
javadoc.noindex=false
66-
javadoc.nonavbar=false
67-
javadoc.notree=false
68-
javadoc.private=false
69-
javadoc.splitindex=true
70-
javadoc.use=true
71-
javadoc.version=false
72-
javadoc.windowtitle=
73-
jnlp.codebase.type=no.codebase
74-
jnlp.descriptor=application
75-
jnlp.enabled=false
76-
jnlp.mixed.code=default
77-
jnlp.offline-allowed=false
78-
jnlp.signed=false
79-
jnlp.signing=
80-
jnlp.signing.alias=
81-
jnlp.signing.keystore=
82-
main.class=org.hightail.ui.MainJFrame
83-
manifest.file=manifest.mf
84-
meta.inf.dir=${src.dir}/META-INF
85-
mkdist.disabled=false
86-
platform.active=default_platform
87-
run.classpath=\
88-
${javac.classpath}:\
89-
${build.classes.dir}
90-
# Space-separated list of JVM arguments used when running the project
91-
# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value
92-
# or test-sys-prop.name=value to set system properties for unit tests):
93-
run.jvmargs=
94-
run.test.classpath=\
95-
${javac.test.classpath}:\
96-
${build.test.classes.dir}
97-
source.encoding=UTF-8
98-
src.dir=src
99-
test.src.dir=test
1+
#Sat Feb 25 15:43:43 CET 2017
2+
jnlp.offline-allowed=false
3+
file.reference.commons-codec-1.10.jar=lib\\commons-codec-1.10.jar
4+
javadoc.splitindex=true
5+
build.classes.excludes=**/*.java,**/*.form
6+
file.reference.htmllexer.jar=lib/htmllexer.jar
7+
file.reference.thumbelina.jar=lib/thumbelina.jar
8+
javadoc.author=false
9+
build.sysclasspath=ignore
10+
javac.target=1.8
11+
build.generated.dir=${build.dir}/generated
12+
run.classpath=${javac.classpath}\:${build.classes.dir}
13+
file.reference.commons-lang3-3.5.jar=lib\\commons-lang3-3.5.jar
14+
file.reference.httpcore-4.4.4.jar=lib\\httpcore-4.4.4.jar
15+
file.reference.jetty-util-9.2.20.v20161216.jar=lib\\jetty-util-9.2.20.v20161216.jar
16+
debug.test.classpath=${run.test.classpath}
17+
jnlp.descriptor=application
18+
file.reference.websocket-api-9.2.20.v20161216.jar=lib\\websocket-api-9.2.20.v20161216.jar
19+
file.reference.xml-apis-1.4.01.jar=lib\\xml-apis-1.4.01.jar
20+
build.dir=build
21+
javac.deprecation=false
22+
jnlp.signed=false
23+
file.reference.sac-1.3.jar=lib\\sac-1.3.jar
24+
file.reference.neko-htmlunit-2.24.jar=lib\\neko-htmlunit-2.24.jar
25+
test.src.dir=test
26+
junit.selected.version=4
27+
jar.archive.disabled=${jnlp.enabled}
28+
includes=**
29+
application.vendor=D
30+
file.reference.httpclient-4.5.2.jar=lib\\httpclient-4.5.2.jar
31+
mkdist.disabled=false
32+
jnlp.mixed.code=default
33+
jar.compress=true
34+
annotation.processing.processors.list=
35+
javac.external.vm=false
36+
javadoc.version=false
37+
build.classes.dir=${build.dir}/classes
38+
file.reference.junit.jar=lib/junit.jar
39+
dist.dir=dist
40+
file.reference.websocket-client-9.2.20.v20161216.jar=lib\\websocket-client-9.2.20.v20161216.jar
41+
manifest.file=manifest.mf
42+
file.reference.sax2.jar=lib/sax2.jar
43+
javac.source=1.8
44+
run.jvmargs=
45+
javac.test.processorpath=${javac.test.classpath}
46+
run.test.classpath=${javac.test.classpath}\:${build.test.classes.dir}
47+
build.generated.sources.dir=${build.dir}/generated-sources
48+
jnlp.signing=
49+
javadoc.notree=false
50+
dist.jar=${dist.dir}/Hightail.jar
51+
file.reference.commons-io-2.5.jar=lib\\commons-io-2.5.jar
52+
platform.active=default_platform
53+
annotation.processing.enabled=true
54+
file.reference.xercesImpl-2.11.0.jar=lib\\xercesImpl-2.11.0.jar
55+
main.class=org.hightail.ui.MainJFrame
56+
dist.javadoc.dir=${dist.dir}/javadoc
57+
file.reference.xalan-2.7.2.jar=lib\\xalan-2.7.2.jar
58+
file.reference.jetty-io-9.2.20.v20161216.jar=lib\\jetty-io-9.2.20.v20161216.jar
59+
javadoc.additionalparam=
60+
javac.classpath=${file.reference.filterbuilder.jar}\:${file.reference.htmllexer.jar}\:${file.reference.htmlparser.jar}\:${file.reference.junit.jar}\:${file.reference.sax2.jar}\:${file.reference.thumbelina.jar}\:${libs.beans-binding.classpath}\:${file.reference.commons-codec-1.10.jar}\:${file.reference.commons-io-2.5.jar}\:${file.reference.commons-lang3-3.5.jar}\:${file.reference.commons-logging-1.2.jar}\:${file.reference.cssparser-0.9.21.jar}\:${file.reference.htmlunit-2.24.jar}\:${file.reference.htmlunit-core-js-2.23.jar}\:${file.reference.httpclient-4.5.2.jar}\:${file.reference.httpcore-4.4.4.jar}\:${file.reference.httpmime-4.5.2.jar}\:${file.reference.jetty-io-9.2.20.v20161216.jar}\:${file.reference.jetty-util-9.2.20.v20161216.jar}\:${file.reference.neko-htmlunit-2.24.jar}\:${file.reference.sac-1.3.jar}\:${file.reference.serializer-2.7.2.jar}\:${file.reference.websocket-api-9.2.20.v20161216.jar}\:${file.reference.websocket-client-9.2.20.v20161216.jar}\:${file.reference.websocket-common-9.2.20.v20161216.jar}\:${file.reference.xalan-2.7.2.jar}\:${file.reference.xercesImpl-2.11.0.jar}\:${file.reference.xml-apis-1.4.01.jar}
61+
javadoc.noindex=false
62+
file.reference.serializer-2.7.2.jar=lib\\serializer-2.7.2.jar
63+
annotation.processing.enabled.in.editor=false
64+
javadoc.private=false
65+
javadoc.encoding=${source.encoding}
66+
build.test.classes.dir=${build.dir}/test/classes
67+
file.reference.htmlparser.jar=lib/htmlparser.jar
68+
jar.index=${jnlp.enabled}
69+
javac.compilerargs=
70+
source.encoding=UTF-8
71+
jnlp.signing.keystore=
72+
meta.inf.dir=${src.dir}/META-INF
73+
annotation.processing.run.all.processors=true
74+
excludes=
75+
application.title=Hightail
76+
jnlp.codebase.type=no.codebase
77+
file.reference.websocket-common-9.2.20.v20161216.jar=lib\\websocket-common-9.2.20.v20161216.jar
78+
file.reference.commons-logging-1.2.jar=lib\\commons-logging-1.2.jar
79+
file.reference.htmlunit-core-js-2.23.jar=lib\\htmlunit-core-js-2.23.jar
80+
javac.processorpath=${javac.classpath}
81+
file.reference.htmlunit-2.24.jar=lib\\htmlunit-2.24.jar
82+
file.reference.httpmime-4.5.2.jar=lib\\httpmime-4.5.2.jar
83+
build.test.results.dir=${build.dir}/test/results
84+
endorsed.classpath=
85+
javadoc.use=true
86+
file.reference.filterbuilder.jar=lib/filterbuilder.jar
87+
javadoc.nonavbar=false
88+
jnlp.signing.alias=
89+
javadoc.windowtitle=
90+
javac.test.classpath=\
91+
${javac.classpath}:\
92+
${build.classes.dir}:\
93+
${libs.junit.classpath}:\
94+
${libs.junit_4.classpath}
95+
src.dir=src
96+
file.reference.cssparser-0.9.21.jar=lib\\cssparser-0.9.21.jar
97+
annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
98+
debug.classpath=${run.classpath}
99+
jnlp.enabled=false

0 commit comments

Comments
 (0)