Re: Shale web page

View: New views
3 Messages — Rating Filter:   Alert me  

Parent Message unknown Re: Shale web page

by Wendy Smoak-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Tue, Apr 15, 2008 at 11:19 AM, linux.eavilesa
<linux.eavilesa@...> wrote:

>  Where is shale web page?

Oops.  Looks like someone deployed the site from the master POM.  Can
the guilty party please re-publish the website? :)

--
Wendy

Re: Shale web page

by Rahul Akolkar :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On 4/15/08, Wendy Smoak <wsmoak@...> wrote:
> On Tue, Apr 15, 2008 at 11:19 AM, linux.eavilesa
>  <linux.eavilesa@...> wrote:
>
>  >  Where is shale web page?
>
>
> Oops.  Looks like someone deployed the site from the master POM.  Can
>  the guilty party please re-publish the website? :)
>
<snip/>

Since Greg mentioned he'd be away, I've tried to rectify it. Waiting
for the sync.

-Rahul

Parent Message unknown Re: Shale web page

by Rahul Akolkar :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

(moved to dev)

On 4/16/08, Greg Reddin <gredbug@...> wrote:
> On Tue, Apr 15, 2008 at 5:19 PM, Rahul Akolkar <rahul.akolkar@...> wrote:
>  >  Since Greg mentioned he'd be away, I've tried to rectify it. Waiting
>  >  for the sync.
>
>
> Thanks, sorry about that. I guess the mvn release:perform did that.
>
<snip/>

Yup, it did.

Looks like we're not configured to prevent that (IMO, it should skip
site deploys by default when packaging is pom, but thats a longer
detour :-). Going forward, we should do three things:

1) Lock plugins in master pom's <pluginManagement>

2) For release plugin in (1) have this:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-release-plugin</artifactId>
  <version>2.0-beta-7</version>
  <configuration>
    <goals>deploy</goals>
  </configuration>
</plugin>

3) Override release plugin (to permit default configuration including
site deploys) in parent pom's <pluginManagement>.

-Rahul