You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ev...@apache.org on 2004/06/08 14:19:54 UTC

cvs commit: maven-plugins/ejb/xdocs changes.xml goals.xml

evenisse    2004/06/08 05:19:54

  Modified:    ejb      plugin.jelly project.xml
               ejb/xdocs changes.xml goals.xml
  Log:
  Add ejb:install-client and ejb:deploy-client goals.
  
  Revision  Changes    Path
  1.17      +28 -3     maven-plugins/ejb/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/ejb/plugin.jelly,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- plugin.jelly	28 Apr 2004 03:38:46 -0000	1.16
  +++ plugin.jelly	8 Jun 2004 12:19:54 -0000	1.17
  @@ -149,6 +149,20 @@
     </goal>
     
     <!--==================================================================-->
  +  <!-- Install the ejb client in the local repository                   -->
  +  <!--==================================================================-->    
  +  <goal name="ejb:install-client"
  +        prereqs="ejb:ejb-client"
  +        description="Install the ejb client in the local repository">
  +     
  +     <artifact:install
  +        artifact="${maven.build.dir}/${maven.final.name}-client.jar"
  +        type="jar"
  +        project="${pom}"/> 
  +  
  +  </goal>
  +  
  +  <!--==================================================================-->
     <!-- Install the ejb in the local repository                          -->
     <!--==================================================================-->    
     <goal name="ejb:install"
  @@ -178,7 +192,7 @@
   
     <!--==================================================================-->
     <!-- Deploys the ejb to the remote repository                         -->
  -  <!--==================================================================-->      
  +  <!--==================================================================-->
     <goal name="ejb:deploy" 
           prereqs="ejb:ejb" 
           description="Deploys the ejb to the remote repository">
  @@ -188,7 +202,7 @@
           type="ejb"
           project="${pom}"/>   
           
  -  </goal>      
  +  </goal>
           
     <!--==================================================================-->
     <!-- Deploys the snapshot of the ejb to the remote repository         -->
  @@ -204,6 +218,17 @@
           
     </goal>
     
  -  
  +  <!--==================================================================-->
  +  <!-- Deploys the ejb to the remote repository                         -->
  +  <!--==================================================================-->
  +  <goal name="ejb:deploy-client" 
  +        prereqs="ejb:ejb-client" 
  +        description="Deploys the ejb client to the remote repository">
  +
  +     <artifact:deploy
  +        artifact="${maven.build.dir}/${maven.final.name}-client.jar"
  +        type="ejb"
  +        project="${pom}"/>   
  +  </goal>
   
   </project>
  
  
  
  1.29      +1 -1      maven-plugins/ejb/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/ejb/project.xml,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- project.xml	16 May 2004 02:29:30 -0000	1.28
  +++ project.xml	8 Jun 2004 12:19:54 -0000	1.29
  @@ -23,7 +23,7 @@
     <pomVersion>3</pomVersion>
     <id>maven-ejb-plugin</id>
     <name>Maven EJB Plugin</name>
  -  <currentVersion>1.4</currentVersion>
  +  <currentVersion>1.5-SNAPSHOT</currentVersion>
     <description>EJB Plugin for Maven</description>
     <shortDescription>EJB Plugin for Maven</shortDescription>
     <url>http://maven.apache.org/reference/plugins/ejb/</url>
  
  
  
  1.17      +3 -0      maven-plugins/ejb/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/ejb/xdocs/changes.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- changes.xml	16 May 2004 02:29:30 -0000	1.16
  +++ changes.xml	8 Jun 2004 12:19:54 -0000	1.17
  @@ -24,6 +24,9 @@
       <author email="nathan.coast@blueyonder.co.uk">Nathan Coast</author>
     </properties>
     <body>
  +    <release version="1.5" date="In CVS">
  +      <action dev="evenisse" type="add">Add ejb:install-client and ejb:deploy-client goals.</action>
  +    </release>
       <release version="1.4" date="2004-05-15">
         <action dev="dion" type="fix">Don't generate a Class-Path manfiest entry if there are no jars with ejb.manifest.classpath set to true</action>
       </release>
  
  
  
  1.4       +8 -0      maven-plugins/ejb/xdocs/goals.xml
  
  Index: goals.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/ejb/xdocs/goals.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- goals.xml	4 Mar 2004 18:05:11 -0000	1.3
  +++ goals.xml	8 Jun 2004 12:19:54 -0000	1.4
  @@ -52,6 +52,10 @@
           <description>Install the snapshot version of the ejb into the local repository</description>
         </goal>      
         <goal>
  +        <name>ejb:install-client</name>
  +        <description>Installs the generated ejb-jar client file into the local repository</description>
  +      </goal>
  +      <goal>
           <name>ejb:deploy</name>
           <description>Deploy the ejb to the remote repository(ies)</description>
         </goal>
  @@ -59,6 +63,10 @@
           <name>ejb:deploy-snapshot</name>
           <description>Deploy the snapshot version of the ejb to the remote repository(ies)</description>
         </goal>  
  +      <goal>
  +        <name>ejb:deploy-client</name>
  +        <description>Deploys the generated ejb-jar client file into the remote repository(ies)</description>
  +      </goal>
       </goals>      
     </body>
   </document>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org