This commit is contained in:
parent
e55afd1041
commit
ee675a839c
3 changed files with 28 additions and 22 deletions
|
@ -1,8 +1,8 @@
|
||||||
build.xml.data.CRC32=6625d932
|
build.xml.data.CRC32=a37bb9f5
|
||||||
build.xml.script.CRC32=c0e8f582
|
build.xml.script.CRC32=c0e8f582
|
||||||
build.xml.stylesheet.CRC32=28e38971@1.38.3.45
|
build.xml.stylesheet.CRC32=28e38971@1.38.3.45
|
||||||
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
|
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
|
||||||
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
|
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
|
||||||
nbproject/build-impl.xml.data.CRC32=6625d932
|
nbproject/build-impl.xml.data.CRC32=a37bb9f5
|
||||||
nbproject/build-impl.xml.script.CRC32=232a7f98
|
nbproject/build-impl.xml.script.CRC32=232a7f98
|
||||||
nbproject/build-impl.xml.stylesheet.CRC32=229523de@1.38.3.45
|
nbproject/build-impl.xml.stylesheet.CRC32=229523de@1.38.3.45
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
annotation.processing.enabled=true
|
||||||
|
annotation.processing.enabled.in.editor=false
|
||||||
|
annotation.processing.run.all.processors=true
|
||||||
application.desc=A simple java desktop application based on Swing Application Framework
|
application.desc=A simple java desktop application based on Swing Application Framework
|
||||||
application.homepage=http://appframework.dev.java.net
|
application.homepage=http://appframework.dev.java.net
|
||||||
application.title=Basic Application Example
|
application.title=Basic Application Example
|
||||||
|
@ -20,6 +23,7 @@ debug.test.classpath=\
|
||||||
dist.dir=dist
|
dist.dir=dist
|
||||||
dist.jar=${dist.dir}/Winda.jar
|
dist.jar=${dist.dir}/Winda.jar
|
||||||
dist.javadoc.dir=${dist.dir}/javadoc
|
dist.javadoc.dir=${dist.dir}/javadoc
|
||||||
|
endorsed.classpath=
|
||||||
excludes=
|
excludes=
|
||||||
includes=**
|
includes=**
|
||||||
jar.compress=false
|
jar.compress=false
|
||||||
|
@ -28,6 +32,8 @@ javac.classpath=\
|
||||||
# Space-separated list of extra javac options
|
# Space-separated list of extra javac options
|
||||||
javac.compilerargs=
|
javac.compilerargs=
|
||||||
javac.deprecation=false
|
javac.deprecation=false
|
||||||
|
javac.processorpath=\
|
||||||
|
${javac.classpath}
|
||||||
javac.source=1.5
|
javac.source=1.5
|
||||||
javac.target=1.5
|
javac.target=1.5
|
||||||
javac.test.classpath=\
|
javac.test.classpath=\
|
||||||
|
@ -46,7 +52,7 @@ javadoc.splitindex=true
|
||||||
javadoc.use=true
|
javadoc.use=true
|
||||||
javadoc.version=false
|
javadoc.version=false
|
||||||
javadoc.windowtitle=
|
javadoc.windowtitle=
|
||||||
main.class=winda.WindaApp
|
main.class=winda.gui.WindaApp
|
||||||
manifest.file=manifest.mf
|
manifest.file=manifest.mf
|
||||||
meta.inf.dir=${src.dir}/META-INF
|
meta.inf.dir=${src.dir}/META-INF
|
||||||
platform.active=default_platform
|
platform.active=default_platform
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
</test-roots>
|
</test-roots>
|
||||||
</data>
|
</data>
|
||||||
<swingapp xmlns="http://www.netbeans.org/ns/form-swingapp/1">
|
<swingapp xmlns="http://www.netbeans.org/ns/form-swingapp/1">
|
||||||
<application-class name="winda.WindaApp"/>
|
<application-class name="winda.gui.WindaApp"/>
|
||||||
</swingapp>
|
</swingapp>
|
||||||
</configuration>
|
</configuration>
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in a new issue