M build.xml

- Added copy.core.src target

M netbeans/build.xml

- added complie.core.src target 

M netbeans/nbproject/build-impl.xml
M netbeans/nbproject/genfiles.properties
M netbeans/nbproject/project.properties

- autogenerate changes

M netbeans/nbproject/project.xml

- rename source roots


git-svn-id: svn://10.0.0.236/trunk@221314 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
edburns%acm.org
2007-03-05 16:35:47 +00:00
parent 045177424e
commit 65b19ae154
6 changed files with 50 additions and 4 deletions

View File

@@ -62,6 +62,7 @@
<antcall target="build.dist.jar" />
<antcall target="copy.binaries" />
<antcall target="copy.test.src" />
<antcall target="copy.core.src" />
<antcall target="copy.build.support" />
<antcall target="build.javadocs" />
<antcall target="build.zip" />
@@ -95,6 +96,7 @@
<mkdir dir="${dist.home}/bin" />
<mkdir dir="${dist.home}/javadocs" />
<mkdir dir="${dist.home}/test" />
<mkdir dir="${dist.home}/src" />
<condition property="so.prefix" value="">
<and>
@@ -218,6 +220,34 @@
</target>
<target name="copy.core.src" depends="prepare">
<!-- Populate the netbeans Source Package with the core
webclient sources -->
<copy todir="${dist.home}/src/main/java" includeEmptyDirs="false">
<fileset dir="${source.home}/webclient/classes_spec">
<exclude name="**/*Bookmark*.java" />
<exclude name="**/*Preferences*.java" />
<exclude name="**/*Profile*.java" />
<exclude name="**/test/*" />
<exclude name="**/test_nonnative/*" />
<exclude name="**/wrapper_nonnative/*" />
<exclude name="**/*.html" />
<exclude name="**/*ICE*.*" />
</fileset>
<fileset dir="${source.home}/util/classes">
<exclude name="**/*.html" />
</fileset>
<fileset dir="${source.home}/dom/classes">
<exclude name="**/*.html" />
</fileset>
</copy>
</target>
<target name="copy.build.support" depends="prepare">
<copy todir="${dist.home}/netbeans">
<fileset dir="${basedir}/netbeans" />