Move our auxiliary pom files into etc so that the top-level of this project is

less polluted. Between build systems, IDEs and IDE-specific-build-systems we've
got half a dozen metafiles knocking around the top-level directory. It's
mayhem.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6359 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2010-12-09 22:37:00 +00:00
parent a985043d48
commit aee6ea100d
4 changed files with 4 additions and 4 deletions
+4 -4
View File
@@ -109,7 +109,7 @@
<target name="aslib" unless="no_rebuild_aslib" depends="-prepare,-checkaslib,-noteaslib" <target name="aslib" unless="no_rebuild_aslib" depends="-prepare,-checkaslib,-noteaslib"
description="Builds the ActionScript code"> description="Builds the ActionScript code">
<!-- obtain our ActionScript dependencies via Maven --> <!-- obtain our ActionScript dependencies via Maven -->
<artifact:pom id="as-pom" file="as-pom.xml"/> <artifact:pom id="as-pom" file="etc/as-pom.xml"/>
<artifact:dependencies filesetId="aslibs.fileset" pomRefId="as-pom" useScope="compile"/> <artifact:dependencies filesetId="aslibs.fileset" pomRefId="as-pom" useScope="compile"/>
<copy todir="${deploy.dir}/lib"> <copy todir="${deploy.dir}/lib">
<fileset refid="aslibs.fileset"/> <fileset refid="aslibs.fileset"/>
@@ -361,17 +361,17 @@
<remoteRepository url="${maven.deploy.repo}"/> <remoteRepository url="${maven.deploy.repo}"/>
<pom refid="pom"/> <pom refid="pom"/>
</artifact:deploy> </artifact:deploy>
<artifact:pom id="tools-pom" file="tools-pom.xml"/> <artifact:pom id="tools-pom" file="etc/tools-pom.xml"/>
<artifact:deploy file="${deploy.dir}/${ant.project.name}.jar" uniqueVersion="false"> <artifact:deploy file="${deploy.dir}/${ant.project.name}.jar" uniqueVersion="false">
<remoteRepository url="${maven.deploy.repo}"/> <remoteRepository url="${maven.deploy.repo}"/>
<pom refid="tools-pom"/> <pom refid="tools-pom"/>
</artifact:deploy> </artifact:deploy>
<artifact:pom id="gwt-pom" file="gwt-pom.xml"/> <artifact:pom id="gwt-pom" file="etc/gwt-pom.xml"/>
<artifact:deploy file="${deploy.dir}/${ant.project.name}-gwt.jar" uniqueVersion="false"> <artifact:deploy file="${deploy.dir}/${ant.project.name}-gwt.jar" uniqueVersion="false">
<remoteRepository url="${maven.deploy.repo}"/> <remoteRepository url="${maven.deploy.repo}"/>
<pom refid="gwt-pom"/> <pom refid="gwt-pom"/>
</artifact:deploy> </artifact:deploy>
<artifact:pom id="as-pom" file="as-pom.xml"/> <artifact:pom id="as-pom" file="etc/as-pom.xml"/>
<artifact:deploy file="${deploy.dir}/${ant.project.name}lib.swc" uniqueVersion="false"> <artifact:deploy file="${deploy.dir}/${ant.project.name}lib.swc" uniqueVersion="false">
<remoteRepository url="${maven.deploy.repo}"/> <remoteRepository url="${maven.deploy.repo}"/>
<pom refid="as-pom"/> <pom refid="as-pom"/>
View File
View File
View File