brett 2004/04/03 19:30:34
Modified: jboss project.xml
jboss/sample maven.xml project.properties
Log:
remove use of target, replace with maven.build.dir
Revision Changes Path
1.23 +1 -1 maven-plugins/jboss/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/maven-plugins/jboss/project.xml,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- project.xml 10 Mar 2004 12:10:27 -0000 1.22
+++ project.xml 4 Apr 2004 03:30:34 -0000 1.23
@@ -23,7 +23,7 @@
<pomVersion>3</pomVersion>
<id>maven-jboss-plugin</id>
<name>Maven JBoss Plug-in</name>
- <currentVersion>1.4</currentVersion>
+ <currentVersion>1.5-SNAPSHOT</currentVersion>
<description>Plugin for JBoss.</description>
<shortDescription>JBoss plugin</shortDescription>
<url>http://maven.apache.org/reference/plugins/jboss/</url>
1.4 +3 -3 maven-plugins/jboss/sample/maven.xml
Index: maven.xml
===================================================================
RCS file: /home/cvs/maven-plugins/jboss/sample/maven.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- maven.xml 4 Mar 2004 18:36:00 -0000 1.3
+++ maven.xml 4 Apr 2004 03:30:34 -0000 1.4
@@ -23,13 +23,13 @@
<project>
<preGoal name="jboss:configure">
- <copy todir="target/appconf">
+ <copy todir="${maven.build.dir}/appconf">
<fileset dir="conf/${env.name}/application"/>
</copy>
- <copy todir="target/jboss/conf">
+ <copy todir="${maven.build.dir}/jboss/conf">
<fileset dir="conf/${env.name}/jboss/conf"/>
</copy>
- <copy todir="target/jboss/deploy">
+ <copy todir="${maven.build.dir}/jboss/deploy">
<fileset dir="conf/${env.name}/jboss/deploy"/>
</copy>
</preGoal>
1.3 +3 -3 maven-plugins/jboss/sample/project.properties
Index: project.properties
===================================================================
RCS file: /home/cvs/maven-plugins/jboss/sample/project.properties,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- project.properties 4 Mar 2004 18:36:00 -0000 1.2
+++ project.properties 4 Apr 2004 03:30:34 -0000 1.3
@@ -15,9 +15,9 @@
# -------------------------------------------------------------------
maven.jboss.conf.name = my
-maven.jboss.appconf.dir = target/appconf
-maven.jboss.conf.dir = target/jboss/conf
-maven.jboss.deploy.dir = target/jboss/deploy
+maven.jboss.appconf.dir = ${maven.build.dir}/appconf
+maven.jboss.conf.dir = ${maven.build.dir}/jboss/conf
+maven.jboss.deploy.dir = ${maven.build.dir}/jboss/deploy
env.name = development
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]