You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2009/02/14 00:43:06 UTC

svn commit: r744288 - in /maven/pom/trunk: asf/pom.xml maven/pom.xml

Author: brianf
Date: Fri Feb 13 23:43:06 2009
New Revision: 744288

URL: http://svn.apache.org/viewvc?rev=744288&view=rev
Log:
use the new parent

Modified:
    maven/pom/trunk/asf/pom.xml
    maven/pom/trunk/maven/pom.xml

Modified: maven/pom/trunk/asf/pom.xml
URL: http://svn.apache.org/viewvc/maven/pom/trunk/asf/pom.xml?rev=744288&r1=744287&r2=744288&view=diff
==============================================================================
--- maven/pom/trunk/asf/pom.xml (original)
+++ maven/pom/trunk/asf/pom.xml Fri Feb 13 23:43:06 2009
@@ -52,23 +52,33 @@
     <repository>
       <id>apache.snapshots</id>
       <name>Apache Snapshot Repository</name>
-      <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+      <url>http://repository.apache.org/content/groups/snapshots/</url>
       <releases>
         <enabled>false</enabled>
       </releases>
     </repository>
   </repositories>
+  <pluginRepositories>
+    <pluginRepository>
+      <id>apache.snapshots</id>
+      <name>Apache Snapshot Repository</name>
+      <url>http://repository.apache.org/content/groups/snapshots/</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+    </pluginRepository>
+  </pluginRepositories>
   <distributionManagement>
     <!-- Site omitted - each project must provide their own -->
     <repository>
-      <id>apache.releases</id>
+      <id>apache.releases.https</id>
       <name>Apache Release Distribution Repository</name>
-      <url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
+      <url>https://repository.apache.org/service/local/staging/deploy/maven2/</url>
     </repository>
     <snapshotRepository>
-      <id>apache.snapshots</id>
-      <name>Apache Development Snapshot Repository</name>
-      <url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
+      <id>apache.snapshots.https</id>
+      <name>${distMgmtSnapshotsName}</name>
+      <url>${distMgmtSnapshotsUrl}</url>
     </snapshotRepository>
   </distributionManagement>
   <mailingLists>
@@ -81,29 +91,10 @@
     </mailingList>
   </mailingLists>
   <properties>
+    <distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
+    <distMgmtSnapshotsUrl>https://repository.apache.org/content/repositories/snapshots</distMgmtSnapshotsUrl>
     <organization.logo>http://www.apache.org/images/asf_logo_wide.gif</organization.logo>
   </properties>
-  <!--
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-remote-resources-plugin</artifactId>
-        <configuration>
-          <artifacts>
-            <artifact>org.apache:apache-distribution-resources:1.0-SNAPSHOT</artifact>
-          </artifacts>
-        </configuration>
-        <executions>
-          <execution>
-            <goals>
-              <goal>process</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
-  -->
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/maven/pom/trunk/asf</connection>
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/trunk/asf</developerConnection>

Modified: maven/pom/trunk/maven/pom.xml
URL: http://svn.apache.org/viewvc/maven/pom/trunk/maven/pom.xml?rev=744288&r1=744287&r2=744288&view=diff
==============================================================================
--- maven/pom/trunk/maven/pom.xml (original)
+++ maven/pom/trunk/maven/pom.xml Fri Feb 13 23:43:06 2009
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache</groupId>
     <artifactId>apache</artifactId>
-    <version>4</version>
+    <version>5-SNAPSHOT</version>
     <relativePath>../asf/pom.xml</relativePath>
   </parent>
 
@@ -510,7 +510,7 @@
   </scm>
   <ciManagement>
     <system>Hudson</system>
-    <url>http://ci.sonatype.org</url>
+    <url>http://grid.sonatype.org/ci</url>
     <notifiers>
       <notifier>
         <type>mail</type>
@@ -521,15 +521,6 @@
     </notifiers>
   </ciManagement>
   <distributionManagement>
-    <repository>
-      <id>maven.staging</id>
-      <url>scp://people.apache.org/www/people.apache.org/builds/maven/${project.version}/staging-repo</url>
-    </repository>
-    <snapshotRepository>
-      <id>apache.snapshots</id>
-      <name>${distMgmtSnapshotsName}</name>
-      <url>${distMgmtSnapshotsUrl}</url>
-    </snapshotRepository>
     <site>
       <id>apache.website</id>
       <url>scp://people.apache.org/www/maven.apache.org</url>
@@ -537,8 +528,6 @@
   </distributionManagement>
 
   <properties>
-    <distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
-    <distMgmtSnapshotsUrl>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</distMgmtSnapshotsUrl>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
   </properties>
 



RE: svn commit: r744288 - in /maven/pom/trunk: asf/pom.xml maven/pom.xml

Posted by "Brian E. Fox" <br...@reply.infinity.nu>.
Just testing the wrapping problem I seem to have:
http://repository.apache.org/snapshots/org/apache/asyncweb/asyncweb-spri
ng/maven-metadata.xml

-----Original Message-----
From: Brian E. Fox [mailto:brianf@reply.infinity.nu] 
Sent: Wednesday, February 18, 2009 2:37 PM
To: Maven Developers List
Subject: RE: svn commit: r744288 - in /maven/pom/trunk: asf/pom.xml
maven/pom.xml

Seems to be proxying just fine:
http://repository.apache.org/snapshots/org/apache/asyncweb/asyncweb-spri
ng/maven-metadata.xml
http://repository.apache.org/snapshots/org/apache/maven/maven-project-bu
ilder/3.0-SNAPSHOT/maven-metadata.xml

-----Original Message-----
From: Brian E. Fox [mailto:brianf@reply.infinity.nu] 
Sent: Wednesday, February 18, 2009 1:52 PM
To: Maven Developers List
Subject: Re: svn commit: r744288 - in /maven/pom/trunk: asf/pom.xml
maven/pom.xml

As far as I know, I've been using it but haven't cleared my repo. If you
browse it's only going to show stuff that has been proxied, not the
entire
contents of p.a.o.


On 2/18/09 10:41 AM, "Brett Porter" <br...@apache.org> wrote:

> 
> On 15/02/2009, at 2:05 AM, Brian E. Fox wrote:
> 
>>> This is probably moreso for the <repositories> elements - there's a
>>> chance some projects will be referring to snapshots in both places.
>> The current one is a group that is logically combining the old and
new
>> repos, there's no reason not to use the r.a.o group for any project
>> instead of p.a.o since it is the only place that will have all
>> snapshots.
> 
> Is this working? I only see a few projects in there. I also see
> metadata from external stuff (opensymphony) which seems wrong.
> 
> Thanks,
> Brett
> 
> --
> Brett Porter
> brett@apache.org
> http://blogs.exist.com/bporter/
> 
> 
> ---------------------------------------------------------------------
> 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


---------------------------------------------------------------------
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: r744288 - in /maven/pom/trunk: asf/pom.xml maven/pom.xml

Posted by "Brian E. Fox" <br...@reply.infinity.nu>.
Seems to be proxying just fine:
http://repository.apache.org/snapshots/org/apache/asyncweb/asyncweb-spri
ng/maven-metadata.xml
http://repository.apache.org/snapshots/org/apache/maven/maven-project-bu
ilder/3.0-SNAPSHOT/maven-metadata.xml

-----Original Message-----
From: Brian E. Fox [mailto:brianf@reply.infinity.nu] 
Sent: Wednesday, February 18, 2009 1:52 PM
To: Maven Developers List
Subject: Re: svn commit: r744288 - in /maven/pom/trunk: asf/pom.xml
maven/pom.xml

As far as I know, I've been using it but haven't cleared my repo. If you
browse it's only going to show stuff that has been proxied, not the
entire
contents of p.a.o.


On 2/18/09 10:41 AM, "Brett Porter" <br...@apache.org> wrote:

> 
> On 15/02/2009, at 2:05 AM, Brian E. Fox wrote:
> 
>>> This is probably moreso for the <repositories> elements - there's a
>>> chance some projects will be referring to snapshots in both places.
>> The current one is a group that is logically combining the old and
new
>> repos, there's no reason not to use the r.a.o group for any project
>> instead of p.a.o since it is the only place that will have all
>> snapshots.
> 
> Is this working? I only see a few projects in there. I also see
> metadata from external stuff (opensymphony) which seems wrong.
> 
> Thanks,
> Brett
> 
> --
> Brett Porter
> brett@apache.org
> http://blogs.exist.com/bporter/
> 
> 
> ---------------------------------------------------------------------
> 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


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


Re: svn commit: r744288 - in /maven/pom/trunk: asf/pom.xml maven/pom.xml

Posted by "Brian E. Fox" <br...@reply.infinity.nu>.
As far as I know, I've been using it but haven't cleared my repo. If you
browse it's only going to show stuff that has been proxied, not the entire
contents of p.a.o.


On 2/18/09 10:41 AM, "Brett Porter" <br...@apache.org> wrote:

> 
> On 15/02/2009, at 2:05 AM, Brian E. Fox wrote:
> 
>>> This is probably moreso for the <repositories> elements - there's a
>>> chance some projects will be referring to snapshots in both places.
>> The current one is a group that is logically combining the old and new
>> repos, there's no reason not to use the r.a.o group for any project
>> instead of p.a.o since it is the only place that will have all
>> snapshots.
> 
> Is this working? I only see a few projects in there. I also see
> metadata from external stuff (opensymphony) which seems wrong.
> 
> Thanks,
> Brett
> 
> --
> Brett Porter
> brett@apache.org
> http://blogs.exist.com/bporter/
> 
> 
> ---------------------------------------------------------------------
> 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: r744288 - in /maven/pom/trunk: asf/pom.xml maven/pom.xml

Posted by Brett Porter <br...@apache.org>.
On 15/02/2009, at 2:05 AM, Brian E. Fox wrote:

>> This is probably moreso for the <repositories> elements - there's a
>> chance some projects will be referring to snapshots in both places.
> The current one is a group that is logically combining the old and new
> repos, there's no reason not to use the r.a.o group for any project
> instead of p.a.o since it is the only place that will have all
> snapshots.

Is this working? I only see a few projects in there. I also see  
metadata from external stuff (opensymphony) which seems wrong.

Thanks,
Brett

--
Brett Porter
brett@apache.org
http://blogs.exist.com/bporter/


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


RE: svn commit: r744288 - in /maven/pom/trunk: asf/pom.xml maven/pom.xml

Posted by "Brian E. Fox" <br...@reply.infinity.nu>.

>I do like the hook to get people to actually use the parent POM, but  
>at the same time it feels back to front (We probably don't need  
>another pom release, but if we did that would then have to be a  
>fork...). What about having them use the properties as their distMgmt  
>settings for now?

We can put a property in the release section as well that can be
overridden I guess. Having consistent overridable properties ASF wide is
important as it more easily lets users build and deploy versions
internally without hacking the poms.


>This is probably moreso for the <repositories> elements - there's a  
>chance some projects will be referring to snapshots in both places.
The current one is a group that is logically combining the old and new
repos, there's no reason not to use the r.a.o group for any project
instead of p.a.o since it is the only place that will have all
snapshots.

>
>
>
>>
>> +  <pluginRepositories>
>> +    <pluginRepository>
>> +      <id>apache.snapshots</id>
>> +      <name>Apache Snapshot Repository</name>
>> +      <url>http://repository.apache.org/content/groups/snapshots/</
>> url>
>> +      <releases>
>> +        <enabled>false</enabled>
>> +      </releases>
>> +    </pluginRepository>
>> +  </pluginRepositories>
>
>> Isn't this badness for pre-Maven 2.0.9 users?
>
> It only applies to building our stuff, which often requires plugin
> snapshots anyway. It shouldn't hurt their builds, unless I'm not
> thinking of something.

If they haven't given a version for a plugin that is hosted at Apache,  
they start getting snapshots resolved for it.

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

--
Brett Porter
brett@apache.org
http://blogs.exist.com/bporter/


---------------------------------------------------------------------
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: r744288 - in /maven/pom/trunk: asf/pom.xml maven/pom.xml

Posted by Brett Porter <br...@apache.org>.
On 14/02/2009, at 10:11 PM, Brian E. Fox wrote:

>
>
>
>> Isn't modifying the ASF POM premature? I'm not sure if other projects
>> are using the POM or not (they should be), but they may not be using
>> this system.
> There are a few other projects looking to use the new structure and  
> this
> would make it easier for them to do. Projects not using the new repo  
> can
> continue to use the 4.x versions of the pom. There's no requirement  
> for
> them to have the last parent for these purposes. It's either that or  
> we
> fork the parent. I don't think it's a great idea to require every
> project to overload the same things over and over.

I do like the hook to get people to actually use the parent POM, but  
at the same time it feels back to front (We probably don't need  
another pom release, but if we did that would then have to be a  
fork...). What about having them use the properties as their distMgmt  
settings for now?

This is probably moreso for the <repositories> elements - there's a  
chance some projects will be referring to snapshots in both places.


>
>
>
>>
>> +  <pluginRepositories>
>> +    <pluginRepository>
>> +      <id>apache.snapshots</id>
>> +      <name>Apache Snapshot Repository</name>
>> +      <url>http://repository.apache.org/content/groups/snapshots/</
>> url>
>> +      <releases>
>> +        <enabled>false</enabled>
>> +      </releases>
>> +    </pluginRepository>
>> +  </pluginRepositories>
>
>> Isn't this badness for pre-Maven 2.0.9 users?
>
> It only applies to building our stuff, which often requires plugin
> snapshots anyway. It shouldn't hurt their builds, unless I'm not
> thinking of something.

If they haven't given a version for a plugin that is hosted at Apache,  
they start getting snapshots resolved for it.

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

--
Brett Porter
brett@apache.org
http://blogs.exist.com/bporter/


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


RE: svn commit: r744288 - in /maven/pom/trunk: asf/pom.xml maven/pom.xml

Posted by "Brian E. Fox" <br...@reply.infinity.nu>.


>Isn't modifying the ASF POM premature? I'm not sure if other projects  
>are using the POM or not (they should be), but they may not be using  
>this system.
There are a few other projects looking to use the new structure and this
would make it easier for them to do. Projects not using the new repo can
continue to use the 4.x versions of the pom. There's no requirement for
them to have the last parent for these purposes. It's either that or we
fork the parent. I don't think it's a great idea to require every
project to overload the same things over and over.


>
> +  <pluginRepositories>
> +    <pluginRepository>
> +      <id>apache.snapshots</id>
> +      <name>Apache Snapshot Repository</name>
> +      <url>http://repository.apache.org/content/groups/snapshots/</ 
> url>
> +      <releases>
> +        <enabled>false</enabled>
> +      </releases>
> +    </pluginRepository>
> +  </pluginRepositories>

>Isn't this badness for pre-Maven 2.0.9 users?

It only applies to building our stuff, which often requires plugin
snapshots anyway. It shouldn't hurt their builds, unless I'm not
thinking of something. 

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


Re: svn commit: r744288 - in /maven/pom/trunk: asf/pom.xml maven/pom.xml

Posted by Brett Porter <br...@apache.org>.
Brian,

On 14/02/2009, at 7:43 AM, brianf@apache.org wrote:

> Modified: maven/pom/trunk/asf/pom.xml
> URL: http://svn.apache.org/viewvc/maven/pom/trunk/asf/pom.xml?rev=744288&r1=744287&r2=744288&view=diff
> =
> =
> =
> =
> =
> =
> =
> =
> ======================================================================
> --- maven/pom/trunk/asf/pom.xml (original)
> +++ maven/pom/trunk/asf/pom.xml Fri Feb 13 23:43:06 2009
> @@ -52,23 +52,33 @@
>     <repository>
>       <id>apache.snapshots</id>
>       <name>Apache Snapshot Repository</name>
> -      <url>http://people.apache.org/repo/m2-snapshot-repository</url>
> +      <url>http://repository.apache.org/content/groups/snapshots/</ 
> url>
>       <releases>
>         <enabled>false</enabled>
>       </releases>
>     </repository>
>   </repositories>

Isn't modifying the ASF POM premature? I'm not sure if other projects  
are using the POM or not (they should be), but they may not be using  
this system.


>
> +  <pluginRepositories>
> +    <pluginRepository>
> +      <id>apache.snapshots</id>
> +      <name>Apache Snapshot Repository</name>
> +      <url>http://repository.apache.org/content/groups/snapshots/</ 
> url>
> +      <releases>
> +        <enabled>false</enabled>
> +      </releases>
> +    </pluginRepository>
> +  </pluginRepositories>

Isn't this badness for pre-Maven 2.0.9 users?

Thanks,
Brett

--
Brett Porter
brett@apache.org
http://blogs.exist.com/bporter/


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


Re: svn commit: r744288 - in /maven/pom/trunk: asf/pom.xml maven/pom.xml

Posted by Christian Edward Gruber <ch...@gmail.com>.
Looks right to me.  He switched some poms to use a different parent,  
and then (I presume) shuffled the repository items to allow resolution  
of that new parent artifact.  No?

Christian

On 15-Feb-09, at 10:10 , Dennis Lundberg wrote:

> Brian, could you write a better message describing this commit. The
> current message doesn't seem to be correct.
>
> brianf@apache.org wrote:
>> Author: brianf
>> Date: Fri Feb 13 23:43:06 2009
>> New Revision: 744288
>>
>> URL: http://svn.apache.org/viewvc?rev=744288&view=rev
>> Log:
>> use the new parent
>>
>> Modified:
>>    maven/pom/trunk/asf/pom.xml
>>    maven/pom/trunk/maven/pom.xml
>>
>> Modified: maven/pom/trunk/asf/pom.xml
>> URL: http://svn.apache.org/viewvc/maven/pom/trunk/asf/pom.xml?rev=744288&r1=744287&r2=744288&view=diff
>> = 
>> = 
>> = 
>> = 
>> = 
>> = 
>> = 
>> = 
>> = 
>> =====================================================================
>> --- maven/pom/trunk/asf/pom.xml (original)
>> +++ maven/pom/trunk/asf/pom.xml Fri Feb 13 23:43:06 2009
>> @@ -52,23 +52,33 @@
>>     <repository>
>>       <id>apache.snapshots</id>
>>       <name>Apache Snapshot Repository</name>
>> -      <url>http://people.apache.org/repo/m2-snapshot-repository</ 
>> url>
>> +      <url>http://repository.apache.org/content/groups/snapshots/</ 
>> url>
>>       <releases>
>>         <enabled>false</enabled>
>>       </releases>
>>     </repository>
>>   </repositories>
>> +  <pluginRepositories>
>> +    <pluginRepository>
>> +      <id>apache.snapshots</id>
>> +      <name>Apache Snapshot Repository</name>
>> +      <url>http://repository.apache.org/content/groups/snapshots/</ 
>> url>
>> +      <releases>
>> +        <enabled>false</enabled>
>> +      </releases>
>> +    </pluginRepository>
>> +  </pluginRepositories>
>>   <distributionManagement>
>>     <!-- Site omitted - each project must provide their own -->
>>     <repository>
>> -      <id>apache.releases</id>
>> +      <id>apache.releases.https</id>
>>       <name>Apache Release Distribution Repository</name>
>> -      <url>scp://people.apache.org/www/people.apache.org/repo/m2- 
>> ibiblio-rsync-repository</url>
>> +      <url>https://repository.apache.org/service/local/staging/deploy/maven2/ 
>> </url>
>>     </repository>
>>     <snapshotRepository>
>> -      <id>apache.snapshots</id>
>> -      <name>Apache Development Snapshot Repository</name>
>> -      <url>scp://people.apache.org/www/people.apache.org/repo/m2- 
>> snapshot-repository</url>
>> +      <id>apache.snapshots.https</id>
>> +      <name>${distMgmtSnapshotsName}</name>
>> +      <url>${distMgmtSnapshotsUrl}</url>
>>     </snapshotRepository>
>>   </distributionManagement>
>>   <mailingLists>
>> @@ -81,29 +91,10 @@
>>     </mailingList>
>>   </mailingLists>
>>   <properties>
>> +    <distMgmtSnapshotsName>Apache Development Snapshot Repository</ 
>> distMgmtSnapshotsName>
>> +    <distMgmtSnapshotsUrl>https://repository.apache.org/content/repositories/snapshots 
>> </distMgmtSnapshotsUrl>
>>     <organization.logo>http://www.apache.org/images/ 
>> asf_logo_wide.gif</organization.logo>
>>   </properties>
>> -  <!--
>> -  <build>
>> -    <plugins>
>> -      <plugin>
>> -        <artifactId>maven-remote-resources-plugin</artifactId>
>> -        <configuration>
>> -          <artifacts>
>> -            <artifact>org.apache:apache-distribution-resources:1.0- 
>> SNAPSHOT</artifact>
>> -          </artifacts>
>> -        </configuration>
>> -        <executions>
>> -          <execution>
>> -            <goals>
>> -              <goal>process</goal>
>> -            </goals>
>> -          </execution>
>> -        </executions>
>> -      </plugin>
>> -    </plugins>
>> -  </build>
>> -  -->
>>   <scm>
>>     <connection>scm:svn:http://svn.apache.org/repos/asf/maven/pom/trunk/asf 
>> </connection>
>>     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/trunk/asf 
>> </developerConnection>
>>
>> Modified: maven/pom/trunk/maven/pom.xml
>> URL: http://svn.apache.org/viewvc/maven/pom/trunk/maven/pom.xml?rev=744288&r1=744287&r2=744288&view=diff
>> = 
>> = 
>> = 
>> = 
>> = 
>> = 
>> = 
>> = 
>> = 
>> =====================================================================
>> --- maven/pom/trunk/maven/pom.xml (original)
>> +++ maven/pom/trunk/maven/pom.xml Fri Feb 13 23:43:06 2009
>> @@ -25,7 +25,7 @@
>>   <parent>
>>     <groupId>org.apache</groupId>
>>     <artifactId>apache</artifactId>
>> -    <version>4</version>
>> +    <version>5-SNAPSHOT</version>
>>     <relativePath>../asf/pom.xml</relativePath>
>>   </parent>
>>
>> @@ -510,7 +510,7 @@
>>   </scm>
>>   <ciManagement>
>>     <system>Hudson</system>
>> -    <url>http://ci.sonatype.org</url>
>> +    <url>http://grid.sonatype.org/ci</url>
>>     <notifiers>
>>       <notifier>
>>         <type>mail</type>
>> @@ -521,15 +521,6 @@
>>     </notifiers>
>>   </ciManagement>
>>   <distributionManagement>
>> -    <repository>
>> -      <id>maven.staging</id>
>> -      <url>scp://people.apache.org/www/people.apache.org/builds/ 
>> maven/${project.version}/staging-repo</url>
>> -    </repository>
>> -    <snapshotRepository>
>> -      <id>apache.snapshots</id>
>> -      <name>${distMgmtSnapshotsName}</name>
>> -      <url>${distMgmtSnapshotsUrl}</url>
>> -    </snapshotRepository>
>>     <site>
>>       <id>apache.website</id>
>>       <url>scp://people.apache.org/www/maven.apache.org</url>
>> @@ -537,8 +528,6 @@
>>   </distributionManagement>
>>
>>   <properties>
>> -    <distMgmtSnapshotsName>Apache Development Snapshot Repository</ 
>> distMgmtSnapshotsName>
>> -    <distMgmtSnapshotsUrl>scp://people.apache.org/www/ 
>> people.apache.org/repo/m2-snapshot-repository</distMgmtSnapshotsUrl>
>>     <project.build.sourceEncoding>UTF-8</ 
>> project.build.sourceEncoding>
>>   </properties>
>>
>>
>>
>>
>
>
> -- 
> Dennis Lundberg
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
>

Christian Edward Gruber
e-mail: christianedwardgruber@gmail.com
weblog: http://www.geekinasuit.com/


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


Re: svn commit: r744288 - in /maven/pom/trunk: asf/pom.xml maven/pom.xml

Posted by Dennis Lundberg <de...@apache.org>.
Brian, could you write a better message describing this commit. The
current message doesn't seem to be correct.

brianf@apache.org wrote:
> Author: brianf
> Date: Fri Feb 13 23:43:06 2009
> New Revision: 744288
> 
> URL: http://svn.apache.org/viewvc?rev=744288&view=rev
> Log:
> use the new parent
> 
> Modified:
>     maven/pom/trunk/asf/pom.xml
>     maven/pom/trunk/maven/pom.xml
> 
> Modified: maven/pom/trunk/asf/pom.xml
> URL: http://svn.apache.org/viewvc/maven/pom/trunk/asf/pom.xml?rev=744288&r1=744287&r2=744288&view=diff
> ==============================================================================
> --- maven/pom/trunk/asf/pom.xml (original)
> +++ maven/pom/trunk/asf/pom.xml Fri Feb 13 23:43:06 2009
> @@ -52,23 +52,33 @@
>      <repository>
>        <id>apache.snapshots</id>
>        <name>Apache Snapshot Repository</name>
> -      <url>http://people.apache.org/repo/m2-snapshot-repository</url>
> +      <url>http://repository.apache.org/content/groups/snapshots/</url>
>        <releases>
>          <enabled>false</enabled>
>        </releases>
>      </repository>
>    </repositories>
> +  <pluginRepositories>
> +    <pluginRepository>
> +      <id>apache.snapshots</id>
> +      <name>Apache Snapshot Repository</name>
> +      <url>http://repository.apache.org/content/groups/snapshots/</url>
> +      <releases>
> +        <enabled>false</enabled>
> +      </releases>
> +    </pluginRepository>
> +  </pluginRepositories>
>    <distributionManagement>
>      <!-- Site omitted - each project must provide their own -->
>      <repository>
> -      <id>apache.releases</id>
> +      <id>apache.releases.https</id>
>        <name>Apache Release Distribution Repository</name>
> -      <url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
> +      <url>https://repository.apache.org/service/local/staging/deploy/maven2/</url>
>      </repository>
>      <snapshotRepository>
> -      <id>apache.snapshots</id>
> -      <name>Apache Development Snapshot Repository</name>
> -      <url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
> +      <id>apache.snapshots.https</id>
> +      <name>${distMgmtSnapshotsName}</name>
> +      <url>${distMgmtSnapshotsUrl}</url>
>      </snapshotRepository>
>    </distributionManagement>
>    <mailingLists>
> @@ -81,29 +91,10 @@
>      </mailingList>
>    </mailingLists>
>    <properties>
> +    <distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
> +    <distMgmtSnapshotsUrl>https://repository.apache.org/content/repositories/snapshots</distMgmtSnapshotsUrl>
>      <organization.logo>http://www.apache.org/images/asf_logo_wide.gif</organization.logo>
>    </properties>
> -  <!--
> -  <build>
> -    <plugins>
> -      <plugin>
> -        <artifactId>maven-remote-resources-plugin</artifactId>
> -        <configuration>
> -          <artifacts>
> -            <artifact>org.apache:apache-distribution-resources:1.0-SNAPSHOT</artifact>
> -          </artifacts>
> -        </configuration>
> -        <executions>
> -          <execution>
> -            <goals>
> -              <goal>process</goal>
> -            </goals>
> -          </execution>
> -        </executions>
> -      </plugin>
> -    </plugins>
> -  </build>
> -  -->
>    <scm>
>      <connection>scm:svn:http://svn.apache.org/repos/asf/maven/pom/trunk/asf</connection>
>      <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/trunk/asf</developerConnection>
> 
> Modified: maven/pom/trunk/maven/pom.xml
> URL: http://svn.apache.org/viewvc/maven/pom/trunk/maven/pom.xml?rev=744288&r1=744287&r2=744288&view=diff
> ==============================================================================
> --- maven/pom/trunk/maven/pom.xml (original)
> +++ maven/pom/trunk/maven/pom.xml Fri Feb 13 23:43:06 2009
> @@ -25,7 +25,7 @@
>    <parent>
>      <groupId>org.apache</groupId>
>      <artifactId>apache</artifactId>
> -    <version>4</version>
> +    <version>5-SNAPSHOT</version>
>      <relativePath>../asf/pom.xml</relativePath>
>    </parent>
>  
> @@ -510,7 +510,7 @@
>    </scm>
>    <ciManagement>
>      <system>Hudson</system>
> -    <url>http://ci.sonatype.org</url>
> +    <url>http://grid.sonatype.org/ci</url>
>      <notifiers>
>        <notifier>
>          <type>mail</type>
> @@ -521,15 +521,6 @@
>      </notifiers>
>    </ciManagement>
>    <distributionManagement>
> -    <repository>
> -      <id>maven.staging</id>
> -      <url>scp://people.apache.org/www/people.apache.org/builds/maven/${project.version}/staging-repo</url>
> -    </repository>
> -    <snapshotRepository>
> -      <id>apache.snapshots</id>
> -      <name>${distMgmtSnapshotsName}</name>
> -      <url>${distMgmtSnapshotsUrl}</url>
> -    </snapshotRepository>
>      <site>
>        <id>apache.website</id>
>        <url>scp://people.apache.org/www/maven.apache.org</url>
> @@ -537,8 +528,6 @@
>    </distributionManagement>
>  
>    <properties>
> -    <distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
> -    <distMgmtSnapshotsUrl>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</distMgmtSnapshotsUrl>
>      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
>    </properties>
>  
> 
> 
> 


-- 
Dennis Lundberg

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