You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by Simone Tripodi <si...@apache.org> on 2012/01/09 08:23:35 UTC

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

Salut Hervé!

does it mean I can safety remove the `rc` profile for addressing sites
distribution management?
TIA, all the 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 10:21 PM,  <hb...@apache.org> wrote:
> Author: hboutemy
> Date: Sun Jan  8 21:21:42 2012
> New Revision: 1228958
>
> URL: http://svn.apache.org/viewvc?rev=1228958&view=rev
> Log:
> configured maven-site-plugin's stagingSiteURL (like done in maven-plugins parent pom)
>
> Modified:
>    maven/skins/trunk/maven-skins/pom.xml
>
> Modified: maven/skins/trunk/maven-skins/pom.xml
> URL: http://svn.apache.org/viewvc/maven/skins/trunk/maven-skins/pom.xml?rev=1228958&r1=1228957&r2=1228958&view=diff
> ==============================================================================
> --- maven/skins/trunk/maven-skins/pom.xml (original)
> +++ maven/skins/trunk/maven-skins/pom.xml Sun Jan  8 21:21:42 2012
> @@ -74,6 +74,12 @@ under the License.
>             <goals>deploy site-deploy</goals>
>           </configuration>
>         </plugin>
> +        <plugin>
> +          <artifactId>maven-site-plugin</artifactId>
> +          <configuration>
> +            <stagingSiteURL>scp://people.apache.org/www/maven.apache.org/skins/${project.artifactId}-${project.version}</stagingSiteURL>
> +          </configuration>
> +        </plugin>
>       </plugins>
>     </pluginManagement>
>   </build>
>
>

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


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

Posted by Simone Tripodi <si...@apache.org>.
Thanks both for the suggestions, really appreciated!!!
I'll try to cut a new RC ASAP - but if someone else feels pleased to
do it, I have no objections!

Thanks again, all the best!
-Simo

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



On Mon, Jan 9, 2012 at 10:24 PM, Dennis Lundberg <de...@apache.org> wrote:
> On 2012-01-09 21:56, Hervé BOUTEMY wrote:
>> I don't know precisely if the configuration of the release plugin will be ok
>> without the rc profile.
>>
>> But with the stagingSiteURL configuration, you can run the "Staging the latest
>> documentation" part of the standard plugin release process [1]:
>> cd target/checkout
>> mvn site site:stage-deploy -Preporting
>
> But, this is where the bug in the Site Plugin kicks in, so that the
> deployed staging site ends up in the wrong place.
>
>>
>> Regards,
>>
>> Hervé
>>
>> [1] http://maven.apache.org/developers/release/maven-plugin-release.html
>>
>> Le lundi 9 janvier 2012 08:23:35 Simone Tripodi a écrit :
>>> Salut Hervé!
>>>
>>> does it mean I can safety remove the `rc` profile for addressing sites
>>> distribution management?
>>> TIA, all the 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 10:21 PM,  <hb...@apache.org> wrote:
>>>> Author: hboutemy
>>>> Date: Sun Jan  8 21:21:42 2012
>>>> New Revision: 1228958
>>>>
>>>> URL: http://svn.apache.org/viewvc?rev=1228958&view=rev
>>>> Log:
>>>> configured maven-site-plugin's stagingSiteURL (like done in
>>>> maven-plugins parent pom)
>>>>
>>>> Modified:
>>>>    maven/skins/trunk/maven-skins/pom.xml
>>>>
>>>> Modified: maven/skins/trunk/maven-skins/pom.xml
>>>> URL:
>>>> http://svn.apache.org/viewvc/maven/skins/trunk/maven-skins/pom.xml?rev=
>>>> 1228958&r1=1228957&r2=1228958&view=diff
>>>> =======================================================================
>>>> ======= --- maven/skins/trunk/maven-skins/pom.xml (original)
>>>> +++ maven/skins/trunk/maven-skins/pom.xml Sun Jan  8 21:21:42 2012
>>>> @@ -74,6 +74,12 @@ under the License.
>>>>             <goals>deploy site-deploy</goals>
>>>>           </configuration>
>>>>         </plugin>
>>>> +        <plugin>
>>>> +          <artifactId>maven-site-plugin</artifactId>
>>>> +          <configuration>
>>>> +
>>>>  <stagingSiteURL>scp://people.apache.org/www/maven.apache.org/skins/${p
>>>> roject.artifactId}-${project.version}</stagingSiteURL> +
>>>>  </configuration>
>>>> +        </plugin>
>>>>       </plugins>
>>>>     </pluginManagement>
>>>>   </build>
>>>
>>> ---------------------------------------------------------------------
>>> 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: r1228958 - /maven/skins/trunk/maven-skins/pom.xml

Posted by Dennis Lundberg <de...@apache.org>.
On 2012-01-09 21:56, Hervé BOUTEMY wrote:
> I don't know precisely if the configuration of the release plugin will be ok 
> without the rc profile.
> 
> But with the stagingSiteURL configuration, you can run the "Staging the latest 
> documentation" part of the standard plugin release process [1]:
> cd target/checkout
> mvn site site:stage-deploy -Preporting

But, this is where the bug in the Site Plugin kicks in, so that the
deployed staging site ends up in the wrong place.

> 
> Regards,
> 
> Hervé
> 
> [1] http://maven.apache.org/developers/release/maven-plugin-release.html
> 
> Le lundi 9 janvier 2012 08:23:35 Simone Tripodi a écrit :
>> Salut Hervé!
>>
>> does it mean I can safety remove the `rc` profile for addressing sites
>> distribution management?
>> TIA, all the 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 10:21 PM,  <hb...@apache.org> wrote:
>>> Author: hboutemy
>>> Date: Sun Jan  8 21:21:42 2012
>>> New Revision: 1228958
>>>
>>> URL: http://svn.apache.org/viewvc?rev=1228958&view=rev
>>> Log:
>>> configured maven-site-plugin's stagingSiteURL (like done in
>>> maven-plugins parent pom)
>>>
>>> Modified:
>>>    maven/skins/trunk/maven-skins/pom.xml
>>>
>>> Modified: maven/skins/trunk/maven-skins/pom.xml
>>> URL:
>>> http://svn.apache.org/viewvc/maven/skins/trunk/maven-skins/pom.xml?rev=
>>> 1228958&r1=1228957&r2=1228958&view=diff
>>> =======================================================================
>>> ======= --- maven/skins/trunk/maven-skins/pom.xml (original)
>>> +++ maven/skins/trunk/maven-skins/pom.xml Sun Jan  8 21:21:42 2012
>>> @@ -74,6 +74,12 @@ under the License.
>>>             <goals>deploy site-deploy</goals>
>>>           </configuration>
>>>         </plugin>
>>> +        <plugin>
>>> +          <artifactId>maven-site-plugin</artifactId>
>>> +          <configuration>
>>> +          
>>>  <stagingSiteURL>scp://people.apache.org/www/maven.apache.org/skins/${p
>>> roject.artifactId}-${project.version}</stagingSiteURL> +        
>>>  </configuration>
>>> +        </plugin>
>>>       </plugins>
>>>     </pluginManagement>
>>>   </build>
>>
>> ---------------------------------------------------------------------
>> 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: r1228958 - /maven/skins/trunk/maven-skins/pom.xml

Posted by Hervé BOUTEMY <he...@free.fr>.
I don't know precisely if the configuration of the release plugin will be ok 
without the rc profile.

But with the stagingSiteURL configuration, you can run the "Staging the latest 
documentation" part of the standard plugin release process [1]:
cd target/checkout
mvn site site:stage-deploy -Preporting


Regards,

Hervé

[1] http://maven.apache.org/developers/release/maven-plugin-release.html

Le lundi 9 janvier 2012 08:23:35 Simone Tripodi a écrit :
> Salut Hervé!
> 
> does it mean I can safety remove the `rc` profile for addressing sites
> distribution management?
> TIA, all the 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 10:21 PM,  <hb...@apache.org> wrote:
> > Author: hboutemy
> > Date: Sun Jan  8 21:21:42 2012
> > New Revision: 1228958
> > 
> > URL: http://svn.apache.org/viewvc?rev=1228958&view=rev
> > Log:
> > configured maven-site-plugin's stagingSiteURL (like done in
> > maven-plugins parent pom)
> > 
> > Modified:
> >    maven/skins/trunk/maven-skins/pom.xml
> > 
> > Modified: maven/skins/trunk/maven-skins/pom.xml
> > URL:
> > http://svn.apache.org/viewvc/maven/skins/trunk/maven-skins/pom.xml?rev=
> > 1228958&r1=1228957&r2=1228958&view=diff
> > =======================================================================
> > ======= --- maven/skins/trunk/maven-skins/pom.xml (original)
> > +++ maven/skins/trunk/maven-skins/pom.xml Sun Jan  8 21:21:42 2012
> > @@ -74,6 +74,12 @@ under the License.
> >             <goals>deploy site-deploy</goals>
> >           </configuration>
> >         </plugin>
> > +        <plugin>
> > +          <artifactId>maven-site-plugin</artifactId>
> > +          <configuration>
> > +          
> >  <stagingSiteURL>scp://people.apache.org/www/maven.apache.org/skins/${p
> > roject.artifactId}-${project.version}</stagingSiteURL> +        
> >  </configuration>
> > +        </plugin>
> >       </plugins>
> >     </pluginManagement>
> >   </build>
> 
> ---------------------------------------------------------------------
> 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: r1228958 - /maven/skins/trunk/maven-skins/pom.xml

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

As I said in another thread, you could remove the rc profile, I have
tried this locally. Unfortunately a bug in the Site Plugin will make
your life miserable when staging the site for 5 skins, since you need to
move the files at the remote location.

Your solution with the rc profile will work, even though it is more
verbose than what we normally use. Do this release with the rc profile,
and we can fix the rest after the release.

On 2012-01-09 08:23, Simone Tripodi wrote:
> Salut Hervé!
> 
> does it mean I can safety remove the `rc` profile for addressing sites
> distribution management?
> TIA, all the 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 10:21 PM,  <hb...@apache.org> wrote:
>> Author: hboutemy
>> Date: Sun Jan  8 21:21:42 2012
>> New Revision: 1228958
>>
>> URL: http://svn.apache.org/viewvc?rev=1228958&view=rev
>> Log:
>> configured maven-site-plugin's stagingSiteURL (like done in maven-plugins parent pom)
>>
>> Modified:
>>    maven/skins/trunk/maven-skins/pom.xml
>>
>> Modified: maven/skins/trunk/maven-skins/pom.xml
>> URL: http://svn.apache.org/viewvc/maven/skins/trunk/maven-skins/pom.xml?rev=1228958&r1=1228957&r2=1228958&view=diff
>> ==============================================================================
>> --- maven/skins/trunk/maven-skins/pom.xml (original)
>> +++ maven/skins/trunk/maven-skins/pom.xml Sun Jan  8 21:21:42 2012
>> @@ -74,6 +74,12 @@ under the License.
>>             <goals>deploy site-deploy</goals>
>>           </configuration>
>>         </plugin>
>> +        <plugin>
>> +          <artifactId>maven-site-plugin</artifactId>
>> +          <configuration>
>> +            <stagingSiteURL>scp://people.apache.org/www/maven.apache.org/skins/${project.artifactId}-${project.version}</stagingSiteURL>
>> +          </configuration>
>> +        </plugin>
>>       </plugins>
>>     </pluginManagement>
>>   </build>
>>
>>
> 
> ---------------------------------------------------------------------
> 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