You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by Dennis Lundberg <de...@apache.org> on 2012/01/07 20:21:43 UTC

Re: svn commit: r1228307 - /maven/skins/trunk/pom.xml

Hi Simone

This is already taken care of in the apache-parent. It should not be
needed here also.

On 2012-01-06 18:57, simonetripodi@apache.org wrote:
> Author: simonetripodi
> Date: Fri Jan  6 17:57:40 2012
> New Revision: 1228307
> 
> URL: http://svn.apache.org/viewvc?rev=1228307&view=rev
> Log:
> included gpg to sign artifacts while deploying a RC
> 
> Modified:
>     maven/skins/trunk/pom.xml
> 
> Modified: maven/skins/trunk/pom.xml
> URL: http://svn.apache.org/viewvc/maven/skins/trunk/pom.xml?rev=1228307&r1=1228306&r2=1228307&view=diff
> ==============================================================================
> --- maven/skins/trunk/pom.xml (original)
> +++ maven/skins/trunk/pom.xml Fri Jan  6 17:57:40 2012
> @@ -93,6 +93,23 @@ under the License.
>        <properties>
>          <site.destination>${project.artifactId}-${project.version}</site.destination>
>        </properties>
> +      <build>
> +        <plugins>
> +          <plugin>
> +            <groupId>org.apache.maven.plugins</groupId>
> +            <artifactId>maven-gpg-plugin</artifactId>
> +            <executions>
> +              <execution>
> +                <id>sign-artifacts</id>
> +                <phase>verify</phase>
> +                <goals>
> +                  <goal>sign</goal>
> +                </goals>
> +              </execution>
> +            </executions>
> +          </plugin>
> +        </plugins>
> +      </build>
>      </profile>
>    </profiles>
>  
> 
> 
> 


-- 
Dennis Lundberg

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


Re: svn commit: r1228307 - /maven/skins/trunk/pom.xml

Posted by Simone Tripodi <si...@apache.org>.
Hi Dennis!

I am sure that is the reason, the <arguments/> element is not merged :(

The reason why I applied that override is to avoid someone (myself at
first place :P) forgets to activate the required/needed profiles
during the release - especially because ITs sites are required to be
deployed, otherwise site links would be broken.

Do you have hints how to improve that? Many thanks in advance!!!
best,
-Simo

http://people.apache.org/~simonetripodi/
http://simonetripodi.livejournal.com/
http://twitter.com/simonetripodi
http://www.99soft.org/



On Sun, Jan 8, 2012 at 9:15 PM, Dennis Lundberg <de...@apache.org> wrote:
> Hi Simone,
>
> The configuration for maven-release-plugin is in apache-parent:10
> https://svn.apache.org/viewvc/maven/pom/tags/apache-10/pom.xml?view=markup
>
> 183   <plugin>
> 184     <groupId>org.apache.maven.plugins</groupId>
> 185     <artifactId>maven-release-plugin</artifactId>
> 186     <version>2.1</version>
> 187     <configuration>
> 188       <useReleaseProfile>false</useReleaseProfile>
> 189       <goals>deploy</goals>
> 190       <arguments>-Papache-release</arguments>
> 191     </configuration>
> 192   </plugin>
>
> Perhaps because you had overridden the "arguments" configuration you
> lost that profile?
>
>
> On 2012-01-08 20:35, Simone Tripodi wrote:
>> Hi Dennis,
>>
>> how do you manage it? I would not having it turned on by default in my
>> settings.xml because I use the same laptop also for work/contribute to
>> other communities...
>> TIA!
>>
>> -Simo
>>
>> http://people.apache.org/~simonetripodi/
>> http://simonetripodi.livejournal.com/
>> http://twitter.com/simonetripodi
>> http://www.99soft.org/
>>
>>
>>
>> On Sun, Jan 8, 2012 at 6:51 PM, Dennis Lundberg <de...@apache.org> wrote:
>>> Hi Simone
>>>
>>> Hmm, when you do a release build, you should not have to enable the
>>> "apache-release" profile. It should be enabled automatically.
>>>
>>> On 2012-01-08 12:31, Simone Tripodi wrote:
>>>> Hi Dennis,
>>>>
>>>> yes my env is ok, what I forgot is enabling the apache-release (blush)!
>>>>
>>>> Thanks for the reminder!
>>>> -Simo
>>>>
>>>> http://people.apache.org/~simonetripodi/
>>>> http://simonetripodi.livejournal.com/
>>>> http://twitter.com/simonetripodi
>>>> http://www.99soft.org/
>>>>
>>>>
>>>>
>>>> On Sun, Jan 8, 2012 at 12:03 PM, Dennis Lundberg <de...@apache.org> wrote:
>>>>> Hi Simone
>>>>>
>>>>> Have you setup your development environment according to this?
>>>>> http://www.apache.org/dev/publishing-maven-artifacts.html#dev-env
>>>>>
>>>>> Important for signing is that the apache-release profile is in there.
>>>>>
>>>>> You can then test that everything is correct by following these steps:
>>>>> http://www.apache.org/dev/publishing-maven-artifacts.html#test_you_settings
>>>>>
>>>>>
>>>>> On 2012-01-07 21:07, Simone Tripodi wrote:
>>>>>> Hi Dennis!
>>>>>>
>>>>>> unfortunately it din't work, I had to drop twice the staging repo
>>>>>> because .asc signatures were missing... :(
>>>>>> Do you have any idea why it can happen?
>>>>>> TIA!
>>>>>> -Simo
>>>>>>
>>>>>> http://people.apache.org/~simonetripodi/
>>>>>> http://simonetripodi.livejournal.com/
>>>>>> http://twitter.com/simonetripodi
>>>>>> http://www.99soft.org/
>>>>>>
>>>>>>
>>>>>>
>>>>>> On Sat, Jan 7, 2012 at 8:21 PM, Dennis Lundberg <de...@apache.org> wrote:
>>>>>>> Hi Simone
>>>>>>>
>>>>>>> This is already taken care of in the apache-parent. It should not be
>>>>>>> needed here also.
>>>>>>>
>>>>>>> On 2012-01-06 18:57, simonetripodi@apache.org wrote:
>>>>>>>> Author: simonetripodi
>>>>>>>> Date: Fri Jan  6 17:57:40 2012
>>>>>>>> New Revision: 1228307
>>>>>>>>
>>>>>>>> URL: http://svn.apache.org/viewvc?rev=1228307&view=rev
>>>>>>>> Log:
>>>>>>>> included gpg to sign artifacts while deploying a RC
>>>>>>>>
>>>>>>>> Modified:
>>>>>>>>     maven/skins/trunk/pom.xml
>>>>>>>>
>>>>>>>> Modified: maven/skins/trunk/pom.xml
>>>>>>>> URL: http://svn.apache.org/viewvc/maven/skins/trunk/pom.xml?rev=1228307&r1=1228306&r2=1228307&view=diff
>>>>>>>> ==============================================================================
>>>>>>>> --- maven/skins/trunk/pom.xml (original)
>>>>>>>> +++ maven/skins/trunk/pom.xml Fri Jan  6 17:57:40 2012
>>>>>>>> @@ -93,6 +93,23 @@ under the License.
>>>>>>>>        <properties>
>>>>>>>>          <site.destination>${project.artifactId}-${project.version}</site.destination>
>>>>>>>>        </properties>
>>>>>>>> +      <build>
>>>>>>>> +        <plugins>
>>>>>>>> +          <plugin>
>>>>>>>> +            <groupId>org.apache.maven.plugins</groupId>
>>>>>>>> +            <artifactId>maven-gpg-plugin</artifactId>
>>>>>>>> +            <executions>
>>>>>>>> +              <execution>
>>>>>>>> +                <id>sign-artifacts</id>
>>>>>>>> +                <phase>verify</phase>
>>>>>>>> +                <goals>
>>>>>>>> +                  <goal>sign</goal>
>>>>>>>> +                </goals>
>>>>>>>> +              </execution>
>>>>>>>> +            </executions>
>>>>>>>> +          </plugin>
>>>>>>>> +        </plugins>
>>>>>>>> +      </build>
>>>>>>>>      </profile>
>>>>>>>>    </profiles>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> --
>>>>>>> Dennis Lundberg
>>>>>>>
>>>>>>> ---------------------------------------------------------------------
>>>>>>> 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
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Dennis Lundberg
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> 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
>>>>
>>>>
>>>
>>>
>>> --
>>> Dennis Lundberg
>>>
>>> ---------------------------------------------------------------------
>>> 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
>>
>>
>
>
> --
> Dennis Lundberg
>
> ---------------------------------------------------------------------
> 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: svn commit: r1228307 - /maven/skins/trunk/pom.xml

Posted by Dennis Lundberg <de...@apache.org>.
Hi Simone,

The configuration for maven-release-plugin is in apache-parent:10
https://svn.apache.org/viewvc/maven/pom/tags/apache-10/pom.xml?view=markup

183   <plugin>
184 	<groupId>org.apache.maven.plugins</groupId>
185 	<artifactId>maven-release-plugin</artifactId>
186 	<version>2.1</version>
187 	<configuration>
188 	  <useReleaseProfile>false</useReleaseProfile>
189 	  <goals>deploy</goals>
190 	  <arguments>-Papache-release</arguments>
191 	</configuration>
192   </plugin>

Perhaps because you had overridden the "arguments" configuration you
lost that profile?


On 2012-01-08 20:35, Simone Tripodi wrote:
> Hi Dennis,
> 
> how do you manage it? I would not having it turned on by default in my
> settings.xml because I use the same laptop also for work/contribute to
> other communities...
> TIA!
> 
> -Simo
> 
> http://people.apache.org/~simonetripodi/
> http://simonetripodi.livejournal.com/
> http://twitter.com/simonetripodi
> http://www.99soft.org/
> 
> 
> 
> On Sun, Jan 8, 2012 at 6:51 PM, Dennis Lundberg <de...@apache.org> wrote:
>> Hi Simone
>>
>> Hmm, when you do a release build, you should not have to enable the
>> "apache-release" profile. It should be enabled automatically.
>>
>> On 2012-01-08 12:31, Simone Tripodi wrote:
>>> Hi Dennis,
>>>
>>> yes my env is ok, what I forgot is enabling the apache-release (blush)!
>>>
>>> Thanks for the reminder!
>>> -Simo
>>>
>>> http://people.apache.org/~simonetripodi/
>>> http://simonetripodi.livejournal.com/
>>> http://twitter.com/simonetripodi
>>> http://www.99soft.org/
>>>
>>>
>>>
>>> On Sun, Jan 8, 2012 at 12:03 PM, Dennis Lundberg <de...@apache.org> wrote:
>>>> Hi Simone
>>>>
>>>> Have you setup your development environment according to this?
>>>> http://www.apache.org/dev/publishing-maven-artifacts.html#dev-env
>>>>
>>>> Important for signing is that the apache-release profile is in there.
>>>>
>>>> You can then test that everything is correct by following these steps:
>>>> http://www.apache.org/dev/publishing-maven-artifacts.html#test_you_settings
>>>>
>>>>
>>>> On 2012-01-07 21:07, Simone Tripodi wrote:
>>>>> Hi Dennis!
>>>>>
>>>>> unfortunately it din't work, I had to drop twice the staging repo
>>>>> because .asc signatures were missing... :(
>>>>> Do you have any idea why it can happen?
>>>>> TIA!
>>>>> -Simo
>>>>>
>>>>> http://people.apache.org/~simonetripodi/
>>>>> http://simonetripodi.livejournal.com/
>>>>> http://twitter.com/simonetripodi
>>>>> http://www.99soft.org/
>>>>>
>>>>>
>>>>>
>>>>> On Sat, Jan 7, 2012 at 8:21 PM, Dennis Lundberg <de...@apache.org> wrote:
>>>>>> Hi Simone
>>>>>>
>>>>>> This is already taken care of in the apache-parent. It should not be
>>>>>> needed here also.
>>>>>>
>>>>>> On 2012-01-06 18:57, simonetripodi@apache.org wrote:
>>>>>>> Author: simonetripodi
>>>>>>> Date: Fri Jan  6 17:57:40 2012
>>>>>>> New Revision: 1228307
>>>>>>>
>>>>>>> URL: http://svn.apache.org/viewvc?rev=1228307&view=rev
>>>>>>> Log:
>>>>>>> included gpg to sign artifacts while deploying a RC
>>>>>>>
>>>>>>> Modified:
>>>>>>>     maven/skins/trunk/pom.xml
>>>>>>>
>>>>>>> Modified: maven/skins/trunk/pom.xml
>>>>>>> URL: http://svn.apache.org/viewvc/maven/skins/trunk/pom.xml?rev=1228307&r1=1228306&r2=1228307&view=diff
>>>>>>> ==============================================================================
>>>>>>> --- maven/skins/trunk/pom.xml (original)
>>>>>>> +++ maven/skins/trunk/pom.xml Fri Jan  6 17:57:40 2012
>>>>>>> @@ -93,6 +93,23 @@ under the License.
>>>>>>>        <properties>
>>>>>>>          <site.destination>${project.artifactId}-${project.version}</site.destination>
>>>>>>>        </properties>
>>>>>>> +      <build>
>>>>>>> +        <plugins>
>>>>>>> +          <plugin>
>>>>>>> +            <groupId>org.apache.maven.plugins</groupId>
>>>>>>> +            <artifactId>maven-gpg-plugin</artifactId>
>>>>>>> +            <executions>
>>>>>>> +              <execution>
>>>>>>> +                <id>sign-artifacts</id>
>>>>>>> +                <phase>verify</phase>
>>>>>>> +                <goals>
>>>>>>> +                  <goal>sign</goal>
>>>>>>> +                </goals>
>>>>>>> +              </execution>
>>>>>>> +            </executions>
>>>>>>> +          </plugin>
>>>>>>> +        </plugins>
>>>>>>> +      </build>
>>>>>>>      </profile>
>>>>>>>    </profiles>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> Dennis Lundberg
>>>>>>
>>>>>> ---------------------------------------------------------------------
>>>>>> 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
>>>>>
>>>>>
>>>>
>>>>
>>>> --
>>>> Dennis Lundberg
>>>>
>>>> ---------------------------------------------------------------------
>>>> 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
>>>
>>>
>>
>>
>> --
>> Dennis Lundberg
>>
>> ---------------------------------------------------------------------
>> 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
> 
> 


-- 
Dennis Lundberg

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


Re: svn commit: r1228307 - /maven/skins/trunk/pom.xml

Posted by Simone Tripodi <si...@apache.org>.
Hi Dennis,

how do you manage it? I would not having it turned on by default in my
settings.xml because I use the same laptop also for work/contribute to
other communities...
TIA!

-Simo

http://people.apache.org/~simonetripodi/
http://simonetripodi.livejournal.com/
http://twitter.com/simonetripodi
http://www.99soft.org/



On Sun, Jan 8, 2012 at 6:51 PM, Dennis Lundberg <de...@apache.org> wrote:
> Hi Simone
>
> Hmm, when you do a release build, you should not have to enable the
> "apache-release" profile. It should be enabled automatically.
>
> On 2012-01-08 12:31, Simone Tripodi wrote:
>> Hi Dennis,
>>
>> yes my env is ok, what I forgot is enabling the apache-release (blush)!
>>
>> Thanks for the reminder!
>> -Simo
>>
>> http://people.apache.org/~simonetripodi/
>> http://simonetripodi.livejournal.com/
>> http://twitter.com/simonetripodi
>> http://www.99soft.org/
>>
>>
>>
>> On Sun, Jan 8, 2012 at 12:03 PM, Dennis Lundberg <de...@apache.org> wrote:
>>> Hi Simone
>>>
>>> Have you setup your development environment according to this?
>>> http://www.apache.org/dev/publishing-maven-artifacts.html#dev-env
>>>
>>> Important for signing is that the apache-release profile is in there.
>>>
>>> You can then test that everything is correct by following these steps:
>>> http://www.apache.org/dev/publishing-maven-artifacts.html#test_you_settings
>>>
>>>
>>> On 2012-01-07 21:07, Simone Tripodi wrote:
>>>> Hi Dennis!
>>>>
>>>> unfortunately it din't work, I had to drop twice the staging repo
>>>> because .asc signatures were missing... :(
>>>> Do you have any idea why it can happen?
>>>> TIA!
>>>> -Simo
>>>>
>>>> http://people.apache.org/~simonetripodi/
>>>> http://simonetripodi.livejournal.com/
>>>> http://twitter.com/simonetripodi
>>>> http://www.99soft.org/
>>>>
>>>>
>>>>
>>>> On Sat, Jan 7, 2012 at 8:21 PM, Dennis Lundberg <de...@apache.org> wrote:
>>>>> Hi Simone
>>>>>
>>>>> This is already taken care of in the apache-parent. It should not be
>>>>> needed here also.
>>>>>
>>>>> On 2012-01-06 18:57, simonetripodi@apache.org wrote:
>>>>>> Author: simonetripodi
>>>>>> Date: Fri Jan  6 17:57:40 2012
>>>>>> New Revision: 1228307
>>>>>>
>>>>>> URL: http://svn.apache.org/viewvc?rev=1228307&view=rev
>>>>>> Log:
>>>>>> included gpg to sign artifacts while deploying a RC
>>>>>>
>>>>>> Modified:
>>>>>>     maven/skins/trunk/pom.xml
>>>>>>
>>>>>> Modified: maven/skins/trunk/pom.xml
>>>>>> URL: http://svn.apache.org/viewvc/maven/skins/trunk/pom.xml?rev=1228307&r1=1228306&r2=1228307&view=diff
>>>>>> ==============================================================================
>>>>>> --- maven/skins/trunk/pom.xml (original)
>>>>>> +++ maven/skins/trunk/pom.xml Fri Jan  6 17:57:40 2012
>>>>>> @@ -93,6 +93,23 @@ under the License.
>>>>>>        <properties>
>>>>>>          <site.destination>${project.artifactId}-${project.version}</site.destination>
>>>>>>        </properties>
>>>>>> +      <build>
>>>>>> +        <plugins>
>>>>>> +          <plugin>
>>>>>> +            <groupId>org.apache.maven.plugins</groupId>
>>>>>> +            <artifactId>maven-gpg-plugin</artifactId>
>>>>>> +            <executions>
>>>>>> +              <execution>
>>>>>> +                <id>sign-artifacts</id>
>>>>>> +                <phase>verify</phase>
>>>>>> +                <goals>
>>>>>> +                  <goal>sign</goal>
>>>>>> +                </goals>
>>>>>> +              </execution>
>>>>>> +            </executions>
>>>>>> +          </plugin>
>>>>>> +        </plugins>
>>>>>> +      </build>
>>>>>>      </profile>
>>>>>>    </profiles>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Dennis Lundberg
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> 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
>>>>
>>>>
>>>
>>>
>>> --
>>> Dennis Lundberg
>>>
>>> ---------------------------------------------------------------------
>>> 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
>>
>>
>
>
> --
> Dennis Lundberg
>
> ---------------------------------------------------------------------
> 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: svn commit: r1228307 - /maven/skins/trunk/pom.xml

Posted by Dennis Lundberg <de...@apache.org>.
Hi Simone

Hmm, when you do a release build, you should not have to enable the
"apache-release" profile. It should be enabled automatically.

On 2012-01-08 12:31, Simone Tripodi wrote:
> Hi Dennis,
> 
> yes my env is ok, what I forgot is enabling the apache-release (blush)!
> 
> Thanks for the reminder!
> -Simo
> 
> http://people.apache.org/~simonetripodi/
> http://simonetripodi.livejournal.com/
> http://twitter.com/simonetripodi
> http://www.99soft.org/
> 
> 
> 
> On Sun, Jan 8, 2012 at 12:03 PM, Dennis Lundberg <de...@apache.org> wrote:
>> Hi Simone
>>
>> Have you setup your development environment according to this?
>> http://www.apache.org/dev/publishing-maven-artifacts.html#dev-env
>>
>> Important for signing is that the apache-release profile is in there.
>>
>> You can then test that everything is correct by following these steps:
>> http://www.apache.org/dev/publishing-maven-artifacts.html#test_you_settings
>>
>>
>> On 2012-01-07 21:07, Simone Tripodi wrote:
>>> Hi Dennis!
>>>
>>> unfortunately it din't work, I had to drop twice the staging repo
>>> because .asc signatures were missing... :(
>>> Do you have any idea why it can happen?
>>> TIA!
>>> -Simo
>>>
>>> http://people.apache.org/~simonetripodi/
>>> http://simonetripodi.livejournal.com/
>>> http://twitter.com/simonetripodi
>>> http://www.99soft.org/
>>>
>>>
>>>
>>> On Sat, Jan 7, 2012 at 8:21 PM, Dennis Lundberg <de...@apache.org> wrote:
>>>> Hi Simone
>>>>
>>>> This is already taken care of in the apache-parent. It should not be
>>>> needed here also.
>>>>
>>>> On 2012-01-06 18:57, simonetripodi@apache.org wrote:
>>>>> Author: simonetripodi
>>>>> Date: Fri Jan  6 17:57:40 2012
>>>>> New Revision: 1228307
>>>>>
>>>>> URL: http://svn.apache.org/viewvc?rev=1228307&view=rev
>>>>> Log:
>>>>> included gpg to sign artifacts while deploying a RC
>>>>>
>>>>> Modified:
>>>>>     maven/skins/trunk/pom.xml
>>>>>
>>>>> Modified: maven/skins/trunk/pom.xml
>>>>> URL: http://svn.apache.org/viewvc/maven/skins/trunk/pom.xml?rev=1228307&r1=1228306&r2=1228307&view=diff
>>>>> ==============================================================================
>>>>> --- maven/skins/trunk/pom.xml (original)
>>>>> +++ maven/skins/trunk/pom.xml Fri Jan  6 17:57:40 2012
>>>>> @@ -93,6 +93,23 @@ under the License.
>>>>>        <properties>
>>>>>          <site.destination>${project.artifactId}-${project.version}</site.destination>
>>>>>        </properties>
>>>>> +      <build>
>>>>> +        <plugins>
>>>>> +          <plugin>
>>>>> +            <groupId>org.apache.maven.plugins</groupId>
>>>>> +            <artifactId>maven-gpg-plugin</artifactId>
>>>>> +            <executions>
>>>>> +              <execution>
>>>>> +                <id>sign-artifacts</id>
>>>>> +                <phase>verify</phase>
>>>>> +                <goals>
>>>>> +                  <goal>sign</goal>
>>>>> +                </goals>
>>>>> +              </execution>
>>>>> +            </executions>
>>>>> +          </plugin>
>>>>> +        </plugins>
>>>>> +      </build>
>>>>>      </profile>
>>>>>    </profiles>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>> --
>>>> Dennis Lundberg
>>>>
>>>> ---------------------------------------------------------------------
>>>> 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
>>>
>>>
>>
>>
>> --
>> Dennis Lundberg
>>
>> ---------------------------------------------------------------------
>> 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
> 
> 


-- 
Dennis Lundberg

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


Re: svn commit: r1228307 - /maven/skins/trunk/pom.xml

Posted by Simone Tripodi <si...@apache.org>.
Hi Dennis,

yes my env is ok, what I forgot is enabling the apache-release (blush)!

Thanks for the reminder!
-Simo

http://people.apache.org/~simonetripodi/
http://simonetripodi.livejournal.com/
http://twitter.com/simonetripodi
http://www.99soft.org/



On Sun, Jan 8, 2012 at 12:03 PM, Dennis Lundberg <de...@apache.org> wrote:
> Hi Simone
>
> Have you setup your development environment according to this?
> http://www.apache.org/dev/publishing-maven-artifacts.html#dev-env
>
> Important for signing is that the apache-release profile is in there.
>
> You can then test that everything is correct by following these steps:
> http://www.apache.org/dev/publishing-maven-artifacts.html#test_you_settings
>
>
> On 2012-01-07 21:07, Simone Tripodi wrote:
>> Hi Dennis!
>>
>> unfortunately it din't work, I had to drop twice the staging repo
>> because .asc signatures were missing... :(
>> Do you have any idea why it can happen?
>> TIA!
>> -Simo
>>
>> http://people.apache.org/~simonetripodi/
>> http://simonetripodi.livejournal.com/
>> http://twitter.com/simonetripodi
>> http://www.99soft.org/
>>
>>
>>
>> On Sat, Jan 7, 2012 at 8:21 PM, Dennis Lundberg <de...@apache.org> wrote:
>>> Hi Simone
>>>
>>> This is already taken care of in the apache-parent. It should not be
>>> needed here also.
>>>
>>> On 2012-01-06 18:57, simonetripodi@apache.org wrote:
>>>> Author: simonetripodi
>>>> Date: Fri Jan  6 17:57:40 2012
>>>> New Revision: 1228307
>>>>
>>>> URL: http://svn.apache.org/viewvc?rev=1228307&view=rev
>>>> Log:
>>>> included gpg to sign artifacts while deploying a RC
>>>>
>>>> Modified:
>>>>     maven/skins/trunk/pom.xml
>>>>
>>>> Modified: maven/skins/trunk/pom.xml
>>>> URL: http://svn.apache.org/viewvc/maven/skins/trunk/pom.xml?rev=1228307&r1=1228306&r2=1228307&view=diff
>>>> ==============================================================================
>>>> --- maven/skins/trunk/pom.xml (original)
>>>> +++ maven/skins/trunk/pom.xml Fri Jan  6 17:57:40 2012
>>>> @@ -93,6 +93,23 @@ under the License.
>>>>        <properties>
>>>>          <site.destination>${project.artifactId}-${project.version}</site.destination>
>>>>        </properties>
>>>> +      <build>
>>>> +        <plugins>
>>>> +          <plugin>
>>>> +            <groupId>org.apache.maven.plugins</groupId>
>>>> +            <artifactId>maven-gpg-plugin</artifactId>
>>>> +            <executions>
>>>> +              <execution>
>>>> +                <id>sign-artifacts</id>
>>>> +                <phase>verify</phase>
>>>> +                <goals>
>>>> +                  <goal>sign</goal>
>>>> +                </goals>
>>>> +              </execution>
>>>> +            </executions>
>>>> +          </plugin>
>>>> +        </plugins>
>>>> +      </build>
>>>>      </profile>
>>>>    </profiles>
>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>> --
>>> Dennis Lundberg
>>>
>>> ---------------------------------------------------------------------
>>> 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
>>
>>
>
>
> --
> Dennis Lundberg
>
> ---------------------------------------------------------------------
> 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: svn commit: r1228307 - /maven/skins/trunk/pom.xml

Posted by Dennis Lundberg <de...@apache.org>.
Hi Simone

Have you setup your development environment according to this?
http://www.apache.org/dev/publishing-maven-artifacts.html#dev-env

Important for signing is that the apache-release profile is in there.

You can then test that everything is correct by following these steps:
http://www.apache.org/dev/publishing-maven-artifacts.html#test_you_settings


On 2012-01-07 21:07, Simone Tripodi wrote:
> Hi Dennis!
> 
> unfortunately it din't work, I had to drop twice the staging repo
> because .asc signatures were missing... :(
> Do you have any idea why it can happen?
> TIA!
> -Simo
> 
> http://people.apache.org/~simonetripodi/
> http://simonetripodi.livejournal.com/
> http://twitter.com/simonetripodi
> http://www.99soft.org/
> 
> 
> 
> On Sat, Jan 7, 2012 at 8:21 PM, Dennis Lundberg <de...@apache.org> wrote:
>> Hi Simone
>>
>> This is already taken care of in the apache-parent. It should not be
>> needed here also.
>>
>> On 2012-01-06 18:57, simonetripodi@apache.org wrote:
>>> Author: simonetripodi
>>> Date: Fri Jan  6 17:57:40 2012
>>> New Revision: 1228307
>>>
>>> URL: http://svn.apache.org/viewvc?rev=1228307&view=rev
>>> Log:
>>> included gpg to sign artifacts while deploying a RC
>>>
>>> Modified:
>>>     maven/skins/trunk/pom.xml
>>>
>>> Modified: maven/skins/trunk/pom.xml
>>> URL: http://svn.apache.org/viewvc/maven/skins/trunk/pom.xml?rev=1228307&r1=1228306&r2=1228307&view=diff
>>> ==============================================================================
>>> --- maven/skins/trunk/pom.xml (original)
>>> +++ maven/skins/trunk/pom.xml Fri Jan  6 17:57:40 2012
>>> @@ -93,6 +93,23 @@ under the License.
>>>        <properties>
>>>          <site.destination>${project.artifactId}-${project.version}</site.destination>
>>>        </properties>
>>> +      <build>
>>> +        <plugins>
>>> +          <plugin>
>>> +            <groupId>org.apache.maven.plugins</groupId>
>>> +            <artifactId>maven-gpg-plugin</artifactId>
>>> +            <executions>
>>> +              <execution>
>>> +                <id>sign-artifacts</id>
>>> +                <phase>verify</phase>
>>> +                <goals>
>>> +                  <goal>sign</goal>
>>> +                </goals>
>>> +              </execution>
>>> +            </executions>
>>> +          </plugin>
>>> +        </plugins>
>>> +      </build>
>>>      </profile>
>>>    </profiles>
>>>
>>>
>>>
>>>
>>
>>
>> --
>> Dennis Lundberg
>>
>> ---------------------------------------------------------------------
>> 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
> 
> 


-- 
Dennis Lundberg

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


Re: svn commit: r1228307 - /maven/skins/trunk/pom.xml

Posted by Simone Tripodi <si...@apache.org>.
Hi Dennis!

unfortunately it din't work, I had to drop twice the staging repo
because .asc signatures were missing... :(
Do you have any idea why it can happen?
TIA!
-Simo

http://people.apache.org/~simonetripodi/
http://simonetripodi.livejournal.com/
http://twitter.com/simonetripodi
http://www.99soft.org/



On Sat, Jan 7, 2012 at 8:21 PM, Dennis Lundberg <de...@apache.org> wrote:
> Hi Simone
>
> This is already taken care of in the apache-parent. It should not be
> needed here also.
>
> On 2012-01-06 18:57, simonetripodi@apache.org wrote:
>> Author: simonetripodi
>> Date: Fri Jan  6 17:57:40 2012
>> New Revision: 1228307
>>
>> URL: http://svn.apache.org/viewvc?rev=1228307&view=rev
>> Log:
>> included gpg to sign artifacts while deploying a RC
>>
>> Modified:
>>     maven/skins/trunk/pom.xml
>>
>> Modified: maven/skins/trunk/pom.xml
>> URL: http://svn.apache.org/viewvc/maven/skins/trunk/pom.xml?rev=1228307&r1=1228306&r2=1228307&view=diff
>> ==============================================================================
>> --- maven/skins/trunk/pom.xml (original)
>> +++ maven/skins/trunk/pom.xml Fri Jan  6 17:57:40 2012
>> @@ -93,6 +93,23 @@ under the License.
>>        <properties>
>>          <site.destination>${project.artifactId}-${project.version}</site.destination>
>>        </properties>
>> +      <build>
>> +        <plugins>
>> +          <plugin>
>> +            <groupId>org.apache.maven.plugins</groupId>
>> +            <artifactId>maven-gpg-plugin</artifactId>
>> +            <executions>
>> +              <execution>
>> +                <id>sign-artifacts</id>
>> +                <phase>verify</phase>
>> +                <goals>
>> +                  <goal>sign</goal>
>> +                </goals>
>> +              </execution>
>> +            </executions>
>> +          </plugin>
>> +        </plugins>
>> +      </build>
>>      </profile>
>>    </profiles>
>>
>>
>>
>>
>
>
> --
> Dennis Lundberg
>
> ---------------------------------------------------------------------
> 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