Author: bago
Date: Sun Jul 27 14:10:20 2008
New Revision: 680185
URL: http://svn.apache.org/viewvc?rev=680185&view=rev
Log:
Few changes in groupId/artifactIds (attempts in fixing site generation)
Modified:
james/jspf/branches/multimodule-proposal/pom.xml
james/jspf/branches/multimodule-proposal/resolver/pom.xml
james/jspf/branches/multimodule-proposal/src/site/site.xml
james/jspf/branches/multimodule-proposal/stage/ (props changed)
james/jspf/branches/multimodule-proposal/stage/pom.xml
james/jspf/branches/multimodule-proposal/tester/pom.xml
Modified: james/jspf/branches/multimodule-proposal/pom.xml
URL:
http://svn.apache.org/viewvc/james/jspf/branches/multimodule-proposal/pom.xml?rev=680185&r1=680184&r2=680185&view=diff
==============================================================================
--- james/jspf/branches/multimodule-proposal/pom.xml (original)
+++ james/jspf/branches/multimodule-proposal/pom.xml Sun Jul 27 14:10:20 2008
@@ -76,6 +76,7 @@
</distributionManagement>
<packaging>pom</packaging>
+
<modules>
<module>stage</module>
<module>resolver</module>
@@ -96,8 +97,8 @@
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.apache.james</groupId>
- <artifactId>apache-jspf-tester</artifactId>
+ <groupId>org.apache.james.jspf</groupId>
+ <artifactId>tester</artifactId>
<version>0.9.7-SNAPSHOT</version>
</dependency>
<dependency>
@@ -143,7 +144,7 @@
</dependency>
</dependencies>
</dependencyManagement>
-
+
<mailingLists>
<mailingList>
<name>Apache jSPF Developement</name>
@@ -154,6 +155,16 @@
</mailingList>
</mailingLists>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>2.0-beta-6</version>
+ </plugin>
+ </plugins>
+ </reporting>
+
<build>
<plugins>
<plugin>
Modified: james/jspf/branches/multimodule-proposal/resolver/pom.xml
URL:
http://svn.apache.org/viewvc/james/jspf/branches/multimodule-proposal/resolver/pom.xml?rev=680185&r1=680184&r2=680185&view=diff
==============================================================================
--- james/jspf/branches/multimodule-proposal/resolver/pom.xml (original)
+++ james/jspf/branches/multimodule-proposal/resolver/pom.xml Sun Jul 27
14:10:20 2008
@@ -19,8 +19,8 @@
under the License.
-->
<modelVersion>4.0.0</modelVersion>
- <groupId>org.apache.james</groupId>
- <artifactId>apache-jspf-resolver</artifactId>
+ <groupId>org.apache.james.jspf</groupId>
+ <artifactId>resolver</artifactId>
<parent>
<groupId>org.apache.james</groupId>
<artifactId>apache-jspf</artifactId>
@@ -58,8 +58,8 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>org.apache.james</groupId>
- <artifactId>apache-jspf-tester</artifactId>
+ <groupId>org.apache.james.jspf</groupId>
+ <artifactId>tester</artifactId>
<scope>test</scope>
</dependency>
<dependency>
@@ -104,11 +104,6 @@
</configuration>
</plugin>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-site-plugin</artifactId>
- <version>2.0-beta-5</version>
- </plugin>
- <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rat-maven-plugin</artifactId>
<configuration>
Modified: james/jspf/branches/multimodule-proposal/src/site/site.xml
URL:
http://svn.apache.org/viewvc/james/jspf/branches/multimodule-proposal/src/site/site.xml?rev=680185&r1=680184&r2=680185&view=diff
==============================================================================
--- james/jspf/branches/multimodule-proposal/src/site/site.xml (original)
+++ james/jspf/branches/multimodule-proposal/src/site/site.xml Sun Jul 27
14:10:20 2008
@@ -36,16 +36,16 @@
<item name="Overview" href="index.html"/>
<item name="jSPF FAQ" href="FAQ.html"/>
<item name="Mailing Lists" href="mail-lists.html" />
+ <item name="Useful RFCs" href="rfclist.html"/>
</menu>
+ <!-- Not yet there
<menu name="Documentation">
- <!-- Not yet there
<item name="jSPF" href="documentation.html"/>
<item name="Design" href="design.html"/>
- -->
- <item name="jSPF Javadocs" href="apidocs/index.html" />
- <item name="Useful RFCs" href="rfclist.html"/>
+ <item name="jSPF Javadocs" href="apidocs/index.html" />
</menu>
+ -->
<menu name="Project">
<item name="Bug Database" href="issue-tracking.html"/>
@@ -56,6 +56,8 @@
-->
<item name="License" href="license.html"/>
</menu>
+
+ <menu ref="modules" />
${reports}
Propchange: james/jspf/branches/multimodule-proposal/stage/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Jul 27 14:10:20 2008
@@ -0,0 +1 @@
+target
Modified: james/jspf/branches/multimodule-proposal/stage/pom.xml
URL:
http://svn.apache.org/viewvc/james/jspf/branches/multimodule-proposal/stage/pom.xml?rev=680185&r1=680184&r2=680185&view=diff
==============================================================================
--- james/jspf/branches/multimodule-proposal/stage/pom.xml (original)
+++ james/jspf/branches/multimodule-proposal/stage/pom.xml Sun Jul 27 14:10:20
2008
@@ -19,8 +19,8 @@
-->
<project>
<modelVersion>4.0.0</modelVersion>
- <groupId>org.apache.james</groupId>
- <artifactId>jspf-repository</artifactId>
+ <groupId>org.apache.james.jspf</groupId>
+ <artifactId>stage</artifactId>
<parent>
<groupId>org.apache.james</groupId>
<artifactId>apache-jspf</artifactId>
Modified: james/jspf/branches/multimodule-proposal/tester/pom.xml
URL:
http://svn.apache.org/viewvc/james/jspf/branches/multimodule-proposal/tester/pom.xml?rev=680185&r1=680184&r2=680185&view=diff
==============================================================================
--- james/jspf/branches/multimodule-proposal/tester/pom.xml (original)
+++ james/jspf/branches/multimodule-proposal/tester/pom.xml Sun Jul 27 14:10:20
2008
@@ -19,8 +19,8 @@
under the License.
-->
<modelVersion>4.0.0</modelVersion>
- <groupId>org.apache.james</groupId>
- <artifactId>apache-jspf-tester</artifactId>
+ <groupId>org.apache.james.jspf</groupId>
+ <artifactId>tester</artifactId>
<parent>
<groupId>org.apache.james</groupId>
<artifactId>apache-jspf</artifactId>
@@ -98,11 +98,6 @@
</configuration>
</plugin>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-site-plugin</artifactId>
- <version>2.0-beta-5</version>
- </plugin>
- <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rat-maven-plugin</artifactId>
<configuration>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]