From: <jbo...@li...> - 2005-12-10 13:44:59
|
Author: adamw Date: 2005-12-10 08:43:39 -0500 (Sat, 10 Dec 2005) New Revision: 1774 Added: trunk/forge/portal-extensions/shotoku/build.properties.sample trunk/forge/portal-extensions/shotoku/lib/ trunk/forge/portal-extensions/shotoku/lib/jboss/ trunk/forge/portal-extensions/shotoku/lib/jboss/jars/ trunk/forge/portal-extensions/shotoku/lib/jboss/jars/activation.jar trunk/forge/portal-extensions/shotoku/lib/jboss/jars/javax.servlet.jar trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-annotations-ejb3.jar trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-aop.jar trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-ejb3.jar trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-ejb3x.jar trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-j2ee.jar trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-jmx.jar trunk/forge/portal-extensions/shotoku/lib/tmate/ trunk/forge/portal-extensions/shotoku/lib/tmate/jars/ trunk/forge/portal-extensions/shotoku/lib/tmate/jars/javasvn.jar Modified: trunk/forge/portal-extensions/shotoku/ trunk/forge/portal-extensions/shotoku/maven.xml trunk/forge/portal-extensions/shotoku/project.xml trunk/forge/portal-extensions/shotoku/shotoku-test/project.xml Log: http://jira.jboss.com/jira/browse/JBSHOTOKU-44 : build changes Property changes on: trunk/forge/portal-extensions/shotoku ___________________________________________________________________ Name: svn:ignore + build.properties Added: trunk/forge/portal-extensions/shotoku/build.properties.sample =================================================================== --- trunk/forge/portal-extensions/shotoku/build.properties.sample 2005-12-10 10:52:23 UTC (rev 1773) +++ trunk/forge/portal-extensions/shotoku/build.properties.sample 2005-12-10 13:43:39 UTC (rev 1774) @@ -0,0 +1,11 @@ +# Path to where JBoss AS is to be copied. +local.server.dir= + +# Path to where your portal extensions are to be deployed - you shouldn't +# have to change that. +local.deploy.dir=${local.server.dir}/server/all/deploy + +# Path to your local maven repository - you can comment this out if you use +# the default location. You can also create a build.properties in your home +# directory to set the maven.repo.local for all projects. +# maven.repo.local= Added: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/activation.jar =================================================================== (Binary files differ) Property changes on: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/activation.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/javax.servlet.jar =================================================================== (Binary files differ) Property changes on: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/javax.servlet.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-annotations-ejb3.jar =================================================================== (Binary files differ) Property changes on: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-annotations-ejb3.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-aop.jar =================================================================== (Binary files differ) Property changes on: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-aop.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-ejb3.jar =================================================================== (Binary files differ) Property changes on: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-ejb3.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-ejb3x.jar =================================================================== (Binary files differ) Property changes on: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-ejb3x.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-j2ee.jar =================================================================== (Binary files differ) Property changes on: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-j2ee.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-jmx.jar =================================================================== (Binary files differ) Property changes on: trunk/forge/portal-extensions/shotoku/lib/jboss/jars/jboss-jmx.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/forge/portal-extensions/shotoku/lib/tmate/jars/javasvn.jar =================================================================== (Binary files differ) Property changes on: trunk/forge/portal-extensions/shotoku/lib/tmate/jars/javasvn.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/forge/portal-extensions/shotoku/maven.xml =================================================================== --- trunk/forge/portal-extensions/shotoku/maven.xml 2005-12-10 10:52:23 UTC (rev 1773) +++ trunk/forge/portal-extensions/shotoku/maven.xml 2005-12-10 13:43:39 UTC (rev 1774) @@ -4,7 +4,12 @@ See terms of license at gnu.org. --> <project xmlns:j="jelly:core" xmlns:ant="jelly:ant" xmlns:u="jelly:util" xmlns:maven="jelly:maven"> - <goal name="all"> + <goal name="prj-clean"> + <ant:delete dir="${maven.build.dir}"/> + <ant:delete dir="${maven.build.dest}"/> + </goal> + + <goal name="all"> <attainGoal name="clean" /> <j:set var="prefix" value="" /> <j:set var="goal" value="build" /> @@ -29,6 +34,10 @@ </goal> <goal name="build"> + <ant:copy todir="${maven.repo.local}" overwrite="true"> + <ant:fileset dir="lib" /> + </ant:copy> + <j:set var="prefix" value="shotoku/" /> <j:set var="goal" value="build" /> <attainGoal name="shotoku-all-projects" /> @@ -39,7 +48,24 @@ <j:set var="goal" value="deploy" /> <attainGoal name="shotoku-all-projects" /> </goal> + + <goal name="shotoku:build"> + <ant:copy todir="${maven.repo.local}" overwrite="true"> + <ant:fileset dir="lib" /> + </ant:copy> + <j:set var="prefix" value="" /> + <j:set var="goal" value="build" /> + <attainGoal name="shotoku-all-projects" /> + </goal> + + <goal name="shotoku:deploy"> + <j:set var="prefix" value="" /> + <j:set var="goal" value="deploy" /> + <attainGoal name="shotoku-all-projects" /> + </goal> + + <goal name="clean"> <attainGoal name="prj-clean" /> <ant:delete dir="shotoku-base/target" /> Modified: trunk/forge/portal-extensions/shotoku/project.xml =================================================================== --- trunk/forge/portal-extensions/shotoku/project.xml 2005-12-10 10:52:23 UTC (rev 1773) +++ trunk/forge/portal-extensions/shotoku/project.xml 2005-12-10 13:43:39 UTC (rev 1774) @@ -6,7 +6,6 @@ --> <project> <pomVersion>3</pomVersion> - <extend>../empty.xml</extend> <id>shotoku</id> <name>Shotoku</name> <currentVersion>1.0</currentVersion> Modified: trunk/forge/portal-extensions/shotoku/shotoku-test/project.xml =================================================================== --- trunk/forge/portal-extensions/shotoku/shotoku-test/project.xml 2005-12-10 10:52:23 UTC (rev 1773) +++ trunk/forge/portal-extensions/shotoku/shotoku-test/project.xml 2005-12-10 13:43:39 UTC (rev 1774) @@ -30,7 +30,7 @@ </dependency> <dependency> - <groupId>aslibs</groupId> + <groupId>jboss</groupId> <artifactId>javax.servlet</artifactId> <version>1.0</version> <jar>javax.servlet.jar</jar> |