You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Alan D. Cabrera" <li...@toolazydogs.com> on 2006/02/16 08:44:24 UTC

Deploying signed releases

How do I do this?


Regards,
Alan


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


Re: Deploying signed releases

Posted by "Alan D. Cabrera" <li...@toolazydogs.com>.
What goes into:

             <!-- Attach signed artifact -->


Is there a sample working project that I can look at?


Regards,
Alan

On 2/16/2006 1:34 AM, Michael Böckling wrote:

> Hi Alan ,
>
> Next time, please write to users@maven.apache.org, this list is for 
> maven development!
>
> To use Jar signing, you have to checkout the latest SVN version of the 
> maven-jar-plugin and install it.
> Then, include this in your POM:
>
> <project>
> <build>
>   <plugins>
>      <plugin>
>        <groupId>org.apache.maven.plugins</groupId>
>        <artifactId>maven-jar-plugin</artifactId>
>        <version>2.1-SNAPSHOT</version>
>        <executions>
>          <execution>
>            <id>jar.sign</id>
>            <goals>
>              <goal>sign</goal>
>            </goals>
>            <configuration>
>              <!-- Attach signed artifact -->
>              <classifier>signed</classifier>
>            </configuration>
>          </execution>
>        </executions>
>      </plugin>
>
> How, your signed artifacts will be deployed as 
> <artifactId>-<version>-signed.jar
> Simply use "signed" as classifier in your dependecies-section to use 
> the signed instead of the unsigned version.
>
> Regards,
>    Michael
>
>
>> How do I do this?
>>
>>
>> Regards,
>> Alan
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
>> For additional commands, e-mail: dev-help@maven.apache.org
>
>
>



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


Re: Deploying signed releases

Posted by "Alan D. Cabrera" <li...@toolazydogs.com>.
What goes into:

             <!-- Attach signed artifact -->


Is there a sample working project that I can look at?


Regards,
Alan

On 2/16/2006 1:34 AM, Michael Böckling wrote:

> Hi Alan ,
>
> Next time, please write to users@maven.apache.org, this list is for 
> maven development!
>
> To use Jar signing, you have to checkout the latest SVN version of the 
> maven-jar-plugin and install it.
> Then, include this in your POM:
>
> <project>
> <build>
>   <plugins>
>      <plugin>
>        <groupId>org.apache.maven.plugins</groupId>
>        <artifactId>maven-jar-plugin</artifactId>
>        <version>2.1-SNAPSHOT</version>
>        <executions>
>          <execution>
>            <id>jar.sign</id>
>            <goals>
>              <goal>sign</goal>
>            </goals>
>            <configuration>
>              <!-- Attach signed artifact -->
>              <classifier>signed</classifier>
>            </configuration>
>          </execution>
>        </executions>
>      </plugin>
>
> How, your signed artifacts will be deployed as 
> <artifactId>-<version>-signed.jar
> Simply use "signed" as classifier in your dependecies-section to use 
> the signed instead of the unsigned version.
>
> Regards,
>    Michael
>
>
>> How do I do this?
>>
>>
>> Regards,
>> Alan
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
>> For additional commands, e-mail: dev-help@maven.apache.org
>
>
>



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


Re: Deploying signed releases

Posted by Michael Böckling <mi...@giniality.com>.
Hi Alan ,

Next time, please write to users@maven.apache.org, this list is for 
maven development!

To use Jar signing, you have to checkout the latest SVN version of the 
maven-jar-plugin and install it.
Then, include this in your POM:

<project>
 <build>
   <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.1-SNAPSHOT</version>
        <executions>
          <execution>
            <id>jar.sign</id>
            <goals>
              <goal>sign</goal>
            </goals>
            <configuration>
              <!-- Attach signed artifact -->
              <classifier>signed</classifier>
            </configuration>
          </execution>
        </executions>
      </plugin>

How, your signed artifacts will be deployed as 
<artifactId>-<version>-signed.jar
Simply use "signed" as classifier in your dependecies-section to use the 
signed instead of the unsigned version.

Regards,
    Michael


> How do I do this?
>
>
> Regards,
> Alan
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org


-- 
Giniality AG - Michael Böckling; Steinenberg 21, CH-4051 Basel
P: +41 61 226 99 63 - F: +41 61 226 99 69
michael.boeckling@giniality.ch; http://www.giniality.com/



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