diff options
author | kcr <kcr@28c7f869-5b4e-e670-f602-82bfaf57f300> | 2006-02-01 01:33:24 +0000 |
---|---|---|
committer | kcr <kcr@28c7f869-5b4e-e670-f602-82bfaf57f300> | 2006-02-01 01:33:24 +0000 |
commit | 39283191507259cb4dccba3441cdf16025179829 (patch) | |
tree | 29ad229325ab151a056d06fbe4c6f1fcd7b292d7 /nbproject | |
parent | 3d596b24b72677fbf264a22f3c0ff44aa9bb2baf (diff) |
Issue 206 : Example program cleanup
Item 4) Reorganized directory structure to make the examples a single project rather than a collection of independent apps.
. All example programs moved under src/classes, and all are now in a subpackage of org.jdesktop.j3d.examples.
. All resource files (geometry, images, audio) moved under src/resources
. ant script now exists only at top level
. Created netbeans project file for NetBeans IDE
Diffstat (limited to 'nbproject')
-rw-r--r-- | nbproject/project.xml | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/nbproject/project.xml b/nbproject/project.xml new file mode 100644 index 0000000..411d578 --- /dev/null +++ b/nbproject/project.xml @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://www.netbeans.org/ns/project/1"> + <type>org.netbeans.modules.ant.freeform</type> + <configuration> + <general-data xmlns="http://www.netbeans.org/ns/freeform-project/1"> + <!-- Do not use Project Properties customizer when editing this file manually. --> + <name>j3d-examples-1.4.0</name> + <properties/> + <folders> + <source-folder> + <label>src/classes</label> + <type>java</type> + <location>src/classes</location> + </source-folder> + </folders> + <ide-actions> + <action name="build"> + <target>jar</target> + </action> + <action name="clean"> + <target>clean</target> + </action> + <action name="run"> + <target>run</target> + </action> + <action name="rebuild"> + <target>clean</target> + <target>jar</target> + </action> + </ide-actions> + <view> + <items> + <source-folder style="packages"> + <label>src/classes</label> + <location>src/classes</location> + </source-folder> + <source-file> + <location>build.xml</location> + </source-file> + </items> + <context-menu> + <ide-action name="build"/> + <ide-action name="clean"/> + <ide-action name="run"/> + <ide-action name="rebuild"/> + </context-menu> + </view> + <subprojects/> + </general-data> + <java-data xmlns="http://www.netbeans.org/ns/freeform-project-java/1"> + <compilation-unit> + <package-root>src/classes</package-root> + <source-level>1.4</source-level> + </compilation-unit> + </java-data> + </configuration> +</project> |