dion        2003/01/13 17:20:23

  Modified:    src/plugins-build/java plugin.jelly
  Log:
  Fix use of id where artifactId should have been used
  
  Revision  Changes    Path
  1.44      +4 -4      jakarta-turbine-maven/src/plugins-build/java/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/java/plugin.jelly,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- plugin.jelly      11 Jan 2003 10:19:15 -0000      1.43
  +++ plugin.jelly      14 Jan 2003 01:20:23 -0000      1.44
  @@ -156,7 +156,7 @@
           <attribute name="Package" value="${pom.package}"/>
           <attribute name="Build-Jdk" value="${java.version}"/>
           <section name="${pom.package}">
  -          <attribute name="Specification-Title" value="${pom.id}"/>
  +          <attribute name="Specification-Title" value="${pom.artifactId}"/>
             <attribute name="Specification-Version" value="${pom.currentVersion}"/>
             <attribute name="Specification-Vendor" value="${pom.organization.name}"/>
             <attribute name="Implementation-Title" value="${pom.package}"/>
  @@ -201,7 +201,7 @@
         artifact="${maven.build.dir}/${maven.jar.to.deploy}"
         type="jars"
         assureDirectoryCommand="mkdir -p"
  -      siteCommand="cd @deployDirectory@; chmod g+w ${maven.jar.to.deploy}; chgrp 
maven ${maven.jar.to.deploy}; ln -sf ${maven.jar.to.deploy} ${pom.id}-SNAPSHOT.jar"
  +      siteCommand="cd @deployDirectory@; chmod g+w ${maven.jar.to.deploy}; chgrp 
maven ${maven.jar.to.deploy}; ln -sf ${maven.jar.to.deploy} 
${pom.artifactId}-SNAPSHOT.jar"
       />
                       
     </goal>
  @@ -237,7 +237,7 @@
       description="Install the jar in the local repository">
       
       <echo>
  -    id = '${pom.id}'
  +    id = '${pom.artifactId}'
       groupId = '${pom.groupId}'
       artifactDirectory = '${pom.artifactDirectory}'
       </echo>
  @@ -263,7 +263,7 @@
       <mkdir dir="${jardir__}"/>
       <copy
         file="${maven.build.dir}/${maven.final.name}.jar"
  -      tofile="${jardir__}/${pom.id}-SNAPSHOT.jar"
  +      tofile="${jardir__}/${pom.artifactId}-SNAPSHOT.jar"
         overwrite="true"
       />
       <copy
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to