You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2006/02/09 17:31:17 UTC

svn commit: r376340 - in /maven/sandbox/proficio: pom.xml proficio-api/pom.xml proficio-api/src/main/java/org/apache/maven/proficio/DefaultProficio.java proficio-core/pom.xml proficio-model/pom.xml

Author: jvanzyl
Date: Thu Feb  9 08:31:15 2006
New Revision: 376340

URL: http://svn.apache.org/viewcvs?rev=376340&view=rev
Log:
o start setting up the idea

Removed:
    maven/sandbox/proficio/proficio-api/src/main/java/org/apache/maven/proficio/DefaultProficio.java
Modified:
    maven/sandbox/proficio/pom.xml
    maven/sandbox/proficio/proficio-api/pom.xml
    maven/sandbox/proficio/proficio-core/pom.xml
    maven/sandbox/proficio/proficio-model/pom.xml

Modified: maven/sandbox/proficio/pom.xml
URL: http://svn.apache.org/viewcvs/maven/sandbox/proficio/pom.xml?rev=376340&r1=376339&r2=376340&view=diff
==============================================================================
--- maven/sandbox/proficio/pom.xml (original)
+++ maven/sandbox/proficio/pom.xml Thu Feb  9 08:31:15 2006
@@ -2,10 +2,32 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven.proficio</groupId>
   <artifactId>proficio</artifactId>
-  <packaging>jar</packaging>
+  <packaging>pom</packaging>
   <version>1</version>
   <name>Maven Quick Start Archetype</name>
   <url>http://maven.apache.org</url>
+  <properties>
+    <proficioVersion>1.0-SNAPSHOT</proficioVersion>
+  </properties>
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.apache.maven.proficio</groupId>
+        <artifactId>proficio-model</artifactId>
+        <version>${proficioVersion}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven.proficio</groupId>
+        <artifactId>proficio-api</artifactId>
+        <version>${proficioVersion}</version>
+      </dependency>      
+      <dependency>
+        <groupId>org.codehaus.plexus</groupId>
+        <artifactId>plexus-container-default</artifactId>
+        <version>1.0-alpha-9</version>
+      </dependency>      
+    </dependencies>
+  </dependencyManagement>
   <dependencies>
     <dependency>
       <groupId>junit</groupId>
@@ -14,4 +36,9 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
+  <modules>
+    <module>proficio-model</module>      
+    <module>proficio-api</module>  
+    <module>proficio-core</module>      
+  </modules>
 </project>

Modified: maven/sandbox/proficio/proficio-api/pom.xml
URL: http://svn.apache.org/viewcvs/maven/sandbox/proficio/proficio-api/pom.xml?rev=376340&r1=376339&r2=376340&view=diff
==============================================================================
--- maven/sandbox/proficio/proficio-api/pom.xml (original)
+++ maven/sandbox/proficio/proficio-api/pom.xml Thu Feb  9 08:31:15 2006
@@ -1,17 +1,19 @@
 <project>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.maven.proficio</groupId>
-  <artifactId>proficio</artifactId>
+  <parent>
+    <groupId>org.apache.maven.proficio</groupId>
+    <artifactId>proficio</artifactId>
+    <version>1</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>  
+  <artifactId>proficio-api</artifactId>
   <packaging>jar</packaging>
   <version>1.0-SNAPSHOT</version>
-  <name>Maven Quick Start Archetype</name>
-  <url>http://maven.apache.org</url>
+  <name>Proficio API</name>
+  <url>http://maven.apache.org/proficio</url>
   <dependencies>
     <dependency>
-      <groupId>org.codehaus.plexus</groupId>
-      <artifactId>plexus-container-default</artifactId>
-      <version>1.0-alpha-9</version>
-      <scope>test</scope>
+      <groupId>org.apache.maven.proficio</groupId>
+      <artifactId>proficio-model</artifactId>      
     </dependency>
   </dependencies>
 </project>

Modified: maven/sandbox/proficio/proficio-core/pom.xml
URL: http://svn.apache.org/viewcvs/maven/sandbox/proficio/proficio-core/pom.xml?rev=376340&r1=376339&r2=376340&view=diff
==============================================================================
--- maven/sandbox/proficio/proficio-core/pom.xml (original)
+++ maven/sandbox/proficio/proficio-core/pom.xml Thu Feb  9 08:31:15 2006
@@ -1,17 +1,23 @@
 <project>
+  <parent>
+    <groupId>org.apache.maven.proficio</groupId>
+    <artifactId>proficio</artifactId>
+    <version>1</version>
+  </parent>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.maven.proficio</groupId>
-  <artifactId>proficio</artifactId>
+  <artifactId>proficio-core</artifactId>
   <packaging>jar</packaging>
   <version>1.0-SNAPSHOT</version>
-  <name>Maven Quick Start Archetype</name>
-  <url>http://maven.apache.org</url>
+  <name>Maven Proficio Core</name>
+  <url>http://maven.apache.org/proficio</url>
   <dependencies>
     <dependency>
+      <groupId>org.apache.maven.proficio</groupId>
+      <artifactId>proficio-api</artifactId>
+    </dependency>
+    <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-container-default</artifactId>
-      <version>1.0-alpha-9</version>
-      <scope>test</scope>
-    </dependency>
+    </dependency>    
   </dependencies>
 </project>

Modified: maven/sandbox/proficio/proficio-model/pom.xml
URL: http://svn.apache.org/viewcvs/maven/sandbox/proficio/proficio-model/pom.xml?rev=376340&r1=376339&r2=376340&view=diff
==============================================================================
--- maven/sandbox/proficio/proficio-model/pom.xml (original)
+++ maven/sandbox/proficio/proficio-model/pom.xml Thu Feb  9 08:31:15 2006
@@ -1,6 +1,10 @@
 <project>
+  <parent>
+    <groupId>org.apache.maven.proficio</groupId>
+    <artifactId>proficio</artifactId>
+    <version>1</version>
+  </parent>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.maven.proficio</groupId>
   <artifactId>proficio-model</artifactId>
   <packaging>jar</packaging>
   <version>1.0-SNAPSHOT</version>