You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by fe...@apache.org on 2011/10/12 17:26:16 UTC

svn commit: r1182425 - /james/trunk/sandbox/felixk/sample-project-layout/skin/pom.xml

Author: felixk
Date: Wed Oct 12 15:26:16 2011
New Revision: 1182425

URL: http://svn.apache.org/viewvc?rev=1182425&view=rev
Log:
There's no need (and also not much benefit) in setting James TLP pom.xml as parent pom. Further more it prevents from having cycling dependencies.
james-skin can and shall be released as a module on its own.

Modified:
    james/trunk/sandbox/felixk/sample-project-layout/skin/pom.xml

Modified: james/trunk/sandbox/felixk/sample-project-layout/skin/pom.xml
URL: http://svn.apache.org/viewvc/james/trunk/sandbox/felixk/sample-project-layout/skin/pom.xml?rev=1182425&r1=1182424&r2=1182425&view=diff
==============================================================================
--- james/trunk/sandbox/felixk/sample-project-layout/skin/pom.xml (original)
+++ james/trunk/sandbox/felixk/sample-project-layout/skin/pom.xml Wed Oct 12 15:26:16 2011
@@ -19,24 +19,58 @@
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
-        <groupId>org.apache.james</groupId>
-        <artifactId>james-parent</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <groupId>org.apache</groupId>
+        <artifactId>apache</artifactId>
+        <version>10</version>
         <relativePath></relativePath>
     </parent>
 
+    <groupId>org.apache.james</groupId>
     <artifactId>james-skin</artifactId>
-    <version>1.7-SNAPSHOT</version>
+    <version>2.0-SNAPSHOT</version>
 
     <name>Apache James Skin</name>
-    <description>The Apache James Official Maven2/3 Site Skin</description>
-    <url>http://james.apache.org/maven-skin/</url>
+    <description>The Apache James Official Maven3 Site Skin</description>
+    <url>http://james.apache.org/james-skin/</url>
+
+    <mailingLists>
+        <mailingList>
+            <name>James Website Development</name>
+            <subscribe>site-dev-subscribe@james.apache.org</subscribe>
+            <unsubscribe>site-dev-unsubscribe@james.apache.org</unsubscribe>
+            <post>site-dev@james.apache.org</post>
+            <archive>http://mail-archives.apache.org/mod_mbox/james-site-dev/</archive>
+        </mailingList>
+    </mailingLists>
+
+    <prerequisites>
+        <maven>3.0.2</maven>
+    </prerequisites>
+
+    <!-- TODO fix links if ever moved to real trunk -->
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/james/trunk/sandbox/felixk/sample-project-layout/skin</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/james/trunk/sandbox/felixk/sample-project-layout/skin</developerConnection>
+        <url>http://svn.apache.org/viewvc/james/trunk/sandbox/felixk/sample-project-layout/skin</url>
+    </scm>
+
+    <issueManagement>
+        <system>JIRA</system>
+        <url>http://issues.apache.org/jira/browse/JAMES</url>
+    </issueManagement>
+
+    <ciManagement>
+        <system>Jenkins</system>
+        <url>https://builds.apache.org/</url>
+    </ciManagement>
 
     <distributionManagement>
+        <!-- Each project must override this with their own -->
         <site>
-            <id>maven-skin-website</id>
-            <url>scp://people.apache.org/www/james.apache.org/maven-skin</url>
+            <id>james-skin-website</id>
+            <url>scp://people.apache.org/www/james.apache.org/${project.artifactId}</url>
         </site>
     </distributionManagement>
 



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