Hi,

not sure what the source of the issue is, but I have the following jars:
-binary jar (project-xxx.jar)
-javadoc-jar  (project-xxx-javadoc.jar)
-source-jar (project-xxx-source.jar)
-test-jar (project-xxx-tests.jar)

I am running something like
mvn install source:jar javadoc:jar -Psign-artifacts -Dpassphrase=foobar

inside one of these modules I have the following for JAR-Plguin:
     <plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-jar-plugin</artifactId>
       <configuration>
        <archive>
          <manifest>
            
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
            
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
          </manifest>
        </archive>
      </configuration>
       <executions>
         <execution>
           <goals>
             <goal>test-jar</goal>
           </goals>
         </execution>
       </executions>
     </plugin>


Ok, the big fun here is, that all JARs are signed (.asc file) but not
the -tests.jar :-)
Anyone seen this before ?

Thx,
Matthias


--
Matthias Wessendorf
http://tinyurl.com/fmywh

further stuff:
blog: http://jroller.com/page/mwessendorf
mail: mwessendorf-at-gmail-dot-com

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

Reply via email to