diff options
| author | Benjamin Culkin <scorpress@gmail.com> | 2024-05-20 17:49:10 -0400 |
|---|---|---|
| committer | Benjamin Culkin <scorpress@gmail.com> | 2024-05-20 17:49:10 -0400 |
| commit | 5c117c7de5ebb57fe5325825deb73e23885ddec0 (patch) | |
| tree | bf76d61a17406bf1468c442c6cd1f95075f638d2 | |
| parent | aedc34d55462a75e329bbf342251ff6504cd117e (diff) | |
Fix POM config to compile
| -rw-r--r-- | projects/net.wotonomy.all/pom.xml | 20 | ||||
| -rw-r--r-- | projects/net.wotonomy.datastore/pom.xml | 27 | ||||
| -rw-r--r-- | projects/net.wotonomy.foundation/pom.xml | 37 | ||||
| -rw-r--r-- | projects/net.wotonomy.persistence.adapter.jdbc/pom.xml | 27 | ||||
| -rw-r--r-- | projects/net.wotonomy.persistence/pom.xml | 29 | ||||
| -rw-r--r-- | projects/net.wotonomy.test/pom.xml | 33 | ||||
| -rw-r--r-- | projects/net.wotonomy.ui.swing/pom.xml | 29 | ||||
| -rw-r--r-- | projects/net.wotonomy.ui/pom.xml | 29 | ||||
| -rw-r--r-- | projects/net.wotonomy.web/pom.xml | 43 |
9 files changed, 152 insertions, 122 deletions
diff --git a/projects/net.wotonomy.all/pom.xml b/projects/net.wotonomy.all/pom.xml index 330062f..f16e5ff 100644 --- a/projects/net.wotonomy.all/pom.xml +++ b/projects/net.wotonomy.all/pom.xml @@ -5,7 +5,8 @@ <version>1.0-alpha5-SNAPSHOT</version> <packaging>pom</packaging> <name>Wotonomy - Parent Project</name> - <description> Wotonomy - A free system for creating great database-oriented swing or web applications.</description> + <description> Wotonomy - A free system for creating great database-oriented + swing or web applications.</description> <url>http://wotonomy.sourceforge.net</url> <modules> <module>../net.wotonomy.datastore</module> @@ -19,30 +20,35 @@ </modules> <ciManagement> <system>continuum</system> - </ciManagement> + </ciManagement> <distributionManagement> <!-- use the following if you're not using a snapshot version. --> <repository> <id>israfil</id> <name>Israfil Deploy</name> - <url>scp://mikail.israfil.net/var/www/vhosts/www.israfil.net/htdocs/maven2</url> + <url> + scp://mikail.israfil.net/var/www/vhosts/www.israfil.net/htdocs/maven2</url> <!--<url>file:///E:/tmp/i-deploy</url>--> </repository> <!-- use the following if you ARE using a snapshot version. --> <snapshotRepository> <id>israfil</id> <name>Israfil Snapshot</name> - <url>scp://mikail.israfil.net/var/www/vhosts/www.israfil.net/htdocs/maven2</url> + <url> + scp://mikail.israfil.net/var/www/vhosts/www.israfil.net/htdocs/maven2</url> <!--<url>file:///E:/tmp/i-deploy</url>--> </snapshotRepository> <site> <id>website</id> - <url>scp://cgruber@shell.sourceforge.net/home/groups/w/wo/wotonomy/htdocs</url> + <url> + scp://cgruber@shell.sourceforge.net/home/groups/w/wo/wotonomy/htdocs</url> </site> </distributionManagement> <scm> - <connection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.all</connection> - <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.all</developerConnection> + <connection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.all</connection> + <developerConnection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.all</developerConnection> </scm> <developers> <developer> diff --git a/projects/net.wotonomy.datastore/pom.xml b/projects/net.wotonomy.datastore/pom.xml index 41acf69..1955d17 100644 --- a/projects/net.wotonomy.datastore/pom.xml +++ b/projects/net.wotonomy.datastore/pom.xml @@ -1,26 +1,27 @@ <project> <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>net.wotonomy</groupId> - <artifactId>wotonomy-all</artifactId> - <version>1.0-alpha5-SNAPSHOT</version> - </parent> - <artifactId>wotonomy-datastore</artifactId> + <parent> + <groupId>net.wotonomy</groupId> + <artifactId>wotonomy-all</artifactId> + <version>1.0-alpha5-SNAPSHOT</version> + <relativePath>../net.wotonomy.all</relativePath> + </parent> + <artifactId>wotonomy-datastore</artifactId> <name>Wotonomy - Object Datastore</name> <packaging>jar</packaging> - <dependencies> + <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>wotonomy-web</artifactId> <version>${project.version}</version> - </dependency> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> - </dependency> - </dependencies> + </dependency> + </dependencies> <reporting> <plugins> <plugin> @@ -39,7 +40,9 @@ </plugins> </reporting> <scm> - <connection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.datastore</connection> - <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.datastore</developerConnection> + <connection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.datastore</connection> + <developerConnection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.datastore</developerConnection> </scm> </project> diff --git a/projects/net.wotonomy.foundation/pom.xml b/projects/net.wotonomy.foundation/pom.xml index acb6815..a4ca4f9 100644 --- a/projects/net.wotonomy.foundation/pom.xml +++ b/projects/net.wotonomy.foundation/pom.xml @@ -1,31 +1,32 @@ <project> <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>net.wotonomy</groupId> - <artifactId>wotonomy-root</artifactId> - <version>1</version> - </parent> - <artifactId>wotonomy-foundation</artifactId> + <parent> + <groupId>net.wotonomy</groupId> + <artifactId>wotonomy-all</artifactId> + <version>1.0-alpha5-SNAPSHOT</version> + <relativePath>../net.wotonomy.all</relativePath> + </parent> + <artifactId>wotonomy-foundation</artifactId> <name>Wotonomy - Foundation Classes</name> <packaging>jar</packaging> - <dependencies> + <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> - </dependency> + </dependency> <dependency> <groupId>concurrent</groupId> <artifactId>concurrent</artifactId> <version>1.3.4</version> - </dependency> - <dependency> - <groupId>ognl</groupId> - <artifactId>ognl</artifactId> - <version>2.6.7</version> - </dependency> - </dependencies> + </dependency> + <dependency> + <groupId>ognl</groupId> + <artifactId>ognl</artifactId> + <version>2.6.7</version> + </dependency> + </dependencies> <reporting> <plugins> <plugin> @@ -42,7 +43,9 @@ </plugins> </reporting> <scm> - <connection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.foundation</connection> - <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.foundation</developerConnection> + <connection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.foundation</connection> + <developerConnection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.foundation</developerConnection> </scm> </project> diff --git a/projects/net.wotonomy.persistence.adapter.jdbc/pom.xml b/projects/net.wotonomy.persistence.adapter.jdbc/pom.xml index 4ec838a..19d0eeb 100644 --- a/projects/net.wotonomy.persistence.adapter.jdbc/pom.xml +++ b/projects/net.wotonomy.persistence.adapter.jdbc/pom.xml @@ -1,26 +1,27 @@ <project> <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>net.wotonomy</groupId> - <artifactId>wotonomy-all</artifactId> - <version>1.0-alpha5-SNAPSHOT</version> - </parent> - <artifactId>wotonomy-persistence-adapter-jdbc</artifactId> + <parent> + <groupId>net.wotonomy</groupId> + <artifactId>wotonomy-all</artifactId> + <version>1.0-alpha5-SNAPSHOT</version> + <relativePath>../net.wotonomy.all</relativePath> + </parent> + <artifactId>wotonomy-persistence-adapter-jdbc</artifactId> <name>Wotonomy - Persistence - JDBC Adapter</name> <packaging>jar</packaging> <dependencies> <dependency> <groupId>net.wotonomy</groupId> <artifactId>wotonomy-persistence</artifactId> - <version>1.0-alpha5-SNAPSHOT</version> - </dependency> + <version>1.0-alpha5-SNAPSHOT</version> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> - </dependency> - </dependencies> + </dependency> + </dependencies> <reporting> <plugins> <plugin> @@ -39,7 +40,9 @@ </plugins> </reporting> <scm> - <connection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.persistence.adapter.jdbc</connection> - <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.persistence.adapter.jdbc</developerConnection> + <connection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.persistence.adapter.jdbc</connection> + <developerConnection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.persistence.adapter.jdbc</developerConnection> </scm> </project> diff --git a/projects/net.wotonomy.persistence/pom.xml b/projects/net.wotonomy.persistence/pom.xml index 7990db5..983e859 100644 --- a/projects/net.wotonomy.persistence/pom.xml +++ b/projects/net.wotonomy.persistence/pom.xml @@ -1,26 +1,27 @@ <project> <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>net.wotonomy</groupId> - <artifactId>wotonomy-all</artifactId> - <version>1.0-alpha5-SNAPSHOT</version> - </parent> - <artifactId>wotonomy-persistence</artifactId> + <parent> + <groupId>net.wotonomy</groupId> + <artifactId>wotonomy-all</artifactId> + <version>1.0-alpha5-SNAPSHOT</version> + <relativePath>../net.wotonomy.all</relativePath> + </parent> + <artifactId>wotonomy-persistence</artifactId> <name>Wotonomy - Persistence</name> <packaging>jar</packaging> - <dependencies> + <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>wotonomy-foundation</artifactId> - <version>${project.version}</version> - </dependency> + <version>${project.version}</version> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> - </dependency> - </dependencies> + </dependency> + </dependencies> <reporting> <plugins> <plugin> @@ -39,7 +40,9 @@ </plugins> </reporting> <scm> - <connection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.persistence</connection> - <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.persistence</developerConnection> + <connection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.persistence</connection> + <developerConnection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.persistence</developerConnection> </scm> </project> diff --git a/projects/net.wotonomy.test/pom.xml b/projects/net.wotonomy.test/pom.xml index 9fe9730..90ddbdf 100644 --- a/projects/net.wotonomy.test/pom.xml +++ b/projects/net.wotonomy.test/pom.xml @@ -1,36 +1,37 @@ <project> <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>net.wotonomy</groupId> - <artifactId>wotonomy-all</artifactId> - <version>1.0-alpha5-SNAPSHOT</version> - </parent> - <artifactId>wotonomy-test</artifactId> + <parent> + <groupId>net.wotonomy</groupId> + <artifactId>wotonomy-all</artifactId> + <version>1.0-alpha5-SNAPSHOT</version> + <relativePath>../net.wotonomy.all</relativePath> + </parent> + <artifactId>wotonomy-test</artifactId> <name>Wotonomy - System Tests</name> <packaging>jar</packaging> - <dependencies> + <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> - </dependency> + </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>wotonomy-web</artifactId> <version>${project.version}</version> - </dependency> + </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>wotonomy-ui-swing</artifactId> <version>${project.version}</version> - </dependency> + </dependency> <dependency> <groupId>${project.groupId}</groupId> - <artifactId>wotonomy-datastore</artifactId> + <artifactId>wotonomy-datastore</artifactId> <version>${project.version}</version> - </dependency> - </dependencies> + </dependency> + </dependencies> <reporting> <plugins> <plugin> @@ -47,7 +48,9 @@ </plugins> </reporting> <scm> - <connection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.test</connection> - <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.test</developerConnection> + <connection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.test</connection> + <developerConnection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.test</developerConnection> </scm> </project> diff --git a/projects/net.wotonomy.ui.swing/pom.xml b/projects/net.wotonomy.ui.swing/pom.xml index 5732a7d..28567d0 100644 --- a/projects/net.wotonomy.ui.swing/pom.xml +++ b/projects/net.wotonomy.ui.swing/pom.xml @@ -1,26 +1,27 @@ <project> <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>net.wotonomy</groupId> - <artifactId>wotonomy-all</artifactId> - <version>1.0-alpha5-SNAPSHOT</version> - </parent> - <artifactId>wotonomy-ui-swing</artifactId> + <parent> + <groupId>net.wotonomy</groupId> + <artifactId>wotonomy-all</artifactId> + <version>1.0-alpha5-SNAPSHOT</version> + <relativePath>../net.wotonomy.all</relativePath> + </parent> + <artifactId>wotonomy-ui-swing</artifactId> <name>Wotonomy - GUI - Swing Implementation</name> <packaging>jar</packaging> - <dependencies> + <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>wotonomy-ui</artifactId> - <version>${project.version}</version> - </dependency> + <version>${project.version}</version> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> - </dependency> - </dependencies> + </dependency> + </dependencies> <reporting> <plugins> <plugin> @@ -39,7 +40,9 @@ </plugins> </reporting> <scm> - <connection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.ui.swing</connection> - <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.ui.swing</developerConnection> + <connection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.ui.swing</connection> + <developerConnection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.ui.swing</developerConnection> </scm> </project> diff --git a/projects/net.wotonomy.ui/pom.xml b/projects/net.wotonomy.ui/pom.xml index 2f64630..bd62e14 100644 --- a/projects/net.wotonomy.ui/pom.xml +++ b/projects/net.wotonomy.ui/pom.xml @@ -1,26 +1,27 @@ <project> <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>net.wotonomy</groupId> - <artifactId>wotonomy-all</artifactId> - <version>1.0-alpha5-SNAPSHOT</version> - </parent> - <artifactId>wotonomy-ui</artifactId> + <parent> + <groupId>net.wotonomy</groupId> + <artifactId>wotonomy-all</artifactId> + <version>1.0-alpha5-SNAPSHOT</version> + <relativePath>../net.wotonomy.all</relativePath> + </parent> + <artifactId>wotonomy-ui</artifactId> <name>Wotonomy - GUI</name> <packaging>jar</packaging> - <dependencies> + <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>wotonomy-persistence</artifactId> - <version>${project.version}</version> - </dependency> + <version>${project.version}</version> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> - </dependency> - </dependencies> + </dependency> + </dependencies> <reporting> <plugins> <plugin> @@ -39,7 +40,9 @@ </plugins> </reporting> <scm> - <connection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.ui</connection> - <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.ui</developerConnection> + <connection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.ui</connection> + <developerConnection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.ui</developerConnection> </scm> </project> diff --git a/projects/net.wotonomy.web/pom.xml b/projects/net.wotonomy.web/pom.xml index 77739e9..d85e081 100644 --- a/projects/net.wotonomy.web/pom.xml +++ b/projects/net.wotonomy.web/pom.xml @@ -1,29 +1,30 @@ <project> <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>net.wotonomy</groupId> - <artifactId>wotonomy-all</artifactId> - <version>1.0-alpha5-SNAPSHOT</version> - </parent> - <artifactId>wotonomy-web</artifactId> + <parent> + <groupId>net.wotonomy</groupId> + <artifactId>wotonomy-all</artifactId> + <version>1.0-alpha5-SNAPSHOT</version> + <relativePath>../net.wotonomy.all</relativePath> + </parent> + <artifactId>wotonomy-web</artifactId> <name>Wotonomy - MVC Web Application Framework</name> - <packaging>jar</packaging> - <dependencies> + <packaging>jar</packaging> + <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>wotonomy-persistence</artifactId> - <version>${project.version}</version> - </dependency> + <version>${project.version}</version> + </dependency> <dependency> <groupId>jetty</groupId> <artifactId>org.mortbay.jetty</artifactId> <version>5.1.9</version> - </dependency> + </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>servlet-api-2.5</artifactId> <version>0PR</version> - </dependency> + </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> @@ -35,17 +36,17 @@ </exclusion> <exclusion> <groupId>xml-apis</groupId> - <artifactId>xml-apis</artifactId> - </exclusion> + <artifactId>xml-apis</artifactId> + </exclusion> </exclusions> - </dependency> - <dependency> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> - </dependency> - </dependencies> + </dependency> + </dependencies> <reporting> <plugins> <plugin> @@ -64,7 +65,9 @@ </plugins> </reporting> <scm> - <connection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.web</connection> - <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.web</developerConnection> + <connection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.web</connection> + <developerConnection> + scm:svn:https://svn.sourceforge.net/svnroot/wotonomy/trunk/projects/net.wotonomy.web</developerConnection> </scm> </project> |
