copy_from_deployed_project_back_to_cvs_workarea

git-svn-id: svn://10.0.0.236/trunk@236627 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
edburns%acm.org
2007-09-25 00:52:05 +00:00
parent 7ffc27f95d
commit 243a4c705a
2 changed files with 78 additions and 2 deletions

View File

@@ -375,6 +375,80 @@ ${so.prefix}xul.${so.extension}.
tofile="${basedir}/../lib/outofdate-webclient_jar" />
</target>
<target name="copy.core.src.to.mozilla.cvs.workarea" depends="-init-check">
<!-- copy test browser files -->
<copy todir="${mozilla.cvs.workarea}/webclient/test/manual/src/classes">
<fileset dir="${basedir}/../test/manual/src/main/java">
<exclude name="cardemo/**/*.*" />
<exclude name="immosearch/**/*.*" />
<exclude name="jsf_jmaki/**/*.*" />
</fileset>
</copy>
<copy todir="${mozilla.cvs.workarea}/webclient/classes_spec">
<fileset dir="${basedir}/../src/main/java">
<include name="org/mozilla/mcp/**/*.*" />
<include name="org/mozilla/webclient/**/*.*" />
</fileset>
</copy>
<!-- copy dom sources -->
<copy todir="${mozilla.cvs.workarea}/dom/classes">
<fileset dir="${basedir}/../src/main/java">
<include name="org/mozilla/dom/**/*.*" />
</fileset>
</copy>
<!-- copy util soucres -->
<copy todir="${mozilla.cvs.workarea}/util/classes">
<fileset dir="${basedir}/../src/main/java">
<include name="org/mozilla/util/**/*.*" />
</fileset>
</copy>
<!-- copy JUnit tests -->
<copy todir="${mozilla.cvs.workarea}/webclient/test/automated/src/classes">
<fileset dir="${basedir}/../test/automated/src/main/java">
<include name="org/**/*.*" />
</fileset>
</copy>
<!-- copy MCP tests -->
<copy todir="${mozilla.cvs.workarea}/dist/mcp-test/src/test/java">
<fileset dir="${basedir}/../test/automated/src/main/java">
<include name="cardemo/**/*.*" />
<include name="immosearch/**/*.*" />
<include name="jsf_jmaki/**/*.*" />
</fileset>
</copy>
<!-- copy stub main files -->
<copy todir="${mozilla.cvs.workarea}/dist/mcp-test/src/main/java">
<fileset dir="${basedir}/../test/manual/src/main/java">
<include name="cardemo/**/*.*" />
<include name="immosearch/**/*.*" />
<include name="jsf_jmaki/**/*.*" />
</fileset>
</copy>
<!-- copy build files -->
<copy todir="${mozilla.cvs.workarea}/dist/netbeans">
<fileset dir="${basedir}">
<include name="build.xml" />
<include name="webclient.properties" />
<include name="logging.properties" />
<include name="nbproject/build-impl.xml" />
<include name="nbproject/project.properties" />
<include name="nbproject/project.xml" />
</fileset>
</copy>
</target>