|
From: <cg...@us...> - 2006-11-01 01:06:32
|
Revision: 942
http://svn.sourceforge.net/wotonomy/?rev=942&view=rev
Author: cgruber
Date: 2006-10-31 17:05:29 -0800 (Tue, 31 Oct 2006)
Log Message:
-----------
fix inter-project dependencies, use the new naming of artifacts, and use maven project variables to address common stuff that needn't be repeated over and over.
Modified Paths:
--------------
trunk/projects/net.wotonomy.datastore/pom.xml
trunk/projects/net.wotonomy.persistence/pom.xml
trunk/projects/net.wotonomy.persistence.adapter.jdbc/pom.xml
trunk/projects/net.wotonomy.test/pom.xml
trunk/projects/net.wotonomy.ui/pom.xml
trunk/projects/net.wotonomy.ui.swing/pom.xml
trunk/projects/net.wotonomy.web/pom.xml
Modified: trunk/projects/net.wotonomy.datastore/pom.xml
===================================================================
--- trunk/projects/net.wotonomy.datastore/pom.xml 2006-11-01 00:43:53 UTC (rev 941)
+++ trunk/projects/net.wotonomy.datastore/pom.xml 2006-11-01 01:05:29 UTC (rev 942)
@@ -10,9 +10,9 @@
<packaging>jar</packaging>
<dependencies>
<dependency>
- <groupId>net.wotonomy</groupId>
- <artifactId>web</artifactId>
- <version>1.0-alpha5-SNAPSHOT</version>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>wotonomy-web</artifactId>
+ <version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: trunk/projects/net.wotonomy.persistence/pom.xml
===================================================================
--- trunk/projects/net.wotonomy.persistence/pom.xml 2006-11-01 00:43:53 UTC (rev 941)
+++ trunk/projects/net.wotonomy.persistence/pom.xml 2006-11-01 01:05:29 UTC (rev 942)
@@ -10,9 +10,9 @@
<packaging>jar</packaging>
<dependencies>
<dependency>
- <groupId>net.wotonomy</groupId>
- <artifactId>foundation</artifactId>
- <version>1.0-alpha5-SNAPSHOT</version>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>wotonomy-foundation</artifactId>
+ <version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: trunk/projects/net.wotonomy.persistence.adapter.jdbc/pom.xml
===================================================================
--- trunk/projects/net.wotonomy.persistence.adapter.jdbc/pom.xml 2006-11-01 00:43:53 UTC (rev 941)
+++ trunk/projects/net.wotonomy.persistence.adapter.jdbc/pom.xml 2006-11-01 01:05:29 UTC (rev 942)
@@ -11,7 +11,7 @@
<dependencies>
<dependency>
<groupId>net.wotonomy</groupId>
- <artifactId>persistence</artifactId>
+ <artifactId>wotonomy-persistence</artifactId>
<version>1.0-alpha5-SNAPSHOT</version>
</dependency>
<dependency>
Modified: trunk/projects/net.wotonomy.test/pom.xml
===================================================================
--- trunk/projects/net.wotonomy.test/pom.xml 2006-11-01 00:43:53 UTC (rev 941)
+++ trunk/projects/net.wotonomy.test/pom.xml 2006-11-01 01:05:29 UTC (rev 942)
@@ -16,19 +16,19 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>net.wotonomy</groupId>
- <artifactId>web</artifactId>
- <version>1.0-alpha5-SNAPSHOT</version>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>wotonomy-web</artifactId>
+ <version>${project.version}</version>
</dependency>
<dependency>
- <groupId>net.wotonomy</groupId>
- <artifactId>ui.swing</artifactId>
- <version>1.0-alpha5-SNAPSHOT</version>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>wotonomy-ui-swing</artifactId>
+ <version>${project.version}</version>
</dependency>
<dependency>
- <groupId>net.wotonomy</groupId>
- <artifactId>datastore</artifactId>
- <version>1.0-alpha5-SNAPSHOT</version>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>wotonomy-datastore</artifactId>
+ <version>${project.version}</version>
</dependency>
</dependencies>
<reporting>
Modified: trunk/projects/net.wotonomy.ui/pom.xml
===================================================================
--- trunk/projects/net.wotonomy.ui/pom.xml 2006-11-01 00:43:53 UTC (rev 941)
+++ trunk/projects/net.wotonomy.ui/pom.xml 2006-11-01 01:05:29 UTC (rev 942)
@@ -10,9 +10,9 @@
<packaging>jar</packaging>
<dependencies>
<dependency>
- <groupId>net.wotonomy</groupId>
- <artifactId>persistence</artifactId>
- <version>1.0-alpha5-SNAPSHOT</version>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>wotonomy-persistence</artifactId>
+ <version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: trunk/projects/net.wotonomy.ui.swing/pom.xml
===================================================================
--- trunk/projects/net.wotonomy.ui.swing/pom.xml 2006-11-01 00:43:53 UTC (rev 941)
+++ trunk/projects/net.wotonomy.ui.swing/pom.xml 2006-11-01 01:05:29 UTC (rev 942)
@@ -10,9 +10,9 @@
<packaging>jar</packaging>
<dependencies>
<dependency>
- <groupId>net.wotonomy</groupId>
- <artifactId>ui</artifactId>
- <version>1.0-alpha5-SNAPSHOT</version>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>wotonomy-ui</artifactId>
+ <version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: trunk/projects/net.wotonomy.web/pom.xml
===================================================================
--- trunk/projects/net.wotonomy.web/pom.xml 2006-11-01 00:43:53 UTC (rev 941)
+++ trunk/projects/net.wotonomy.web/pom.xml 2006-11-01 01:05:29 UTC (rev 942)
@@ -10,9 +10,9 @@
<packaging>jar</packaging>
<dependencies>
<dependency>
- <groupId>net.wotonomy</groupId>
- <artifactId>persistence</artifactId>
- <version>1.0-alpha5-SNAPSHOT</version>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>wotonomy-persistence</artifactId>
+ <version>${project.version}</version>
</dependency>
<dependency>
<groupId>jetty</groupId>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|