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 <[email protected]> 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 <[email protected]> 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 <[email protected]> >>>>> 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, [email protected] 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: [email protected] >>>>>> For additional commands, e-mail: [email protected] >>>>>> >>>>> >>>>> --------------------------------------------------------------------- >>>>> To unsubscribe, e-mail: [email protected] >>>>> For additional commands, e-mail: [email protected] >>>>> >>>>> >>>> >>>> >>>> -- >>>> Dennis Lundberg >>>> >>>> --------------------------------------------------------------------- >>>> To unsubscribe, e-mail: [email protected] >>>> For additional commands, e-mail: [email protected] >>>> >>> >>> --------------------------------------------------------------------- >>> To unsubscribe, e-mail: [email protected] >>> For additional commands, e-mail: [email protected] >>> >>> >> >> >> -- >> Dennis Lundberg >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Dennis Lundberg --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
