blob: 8316b1ddfe23c526decb1c0ab9199dfd8c09952a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.wotonomy</groupId>
<artifactId>wotonomy-all</artifactId>
<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>
<url>http://wotonomy.sourceforge.net</url>
<modules>
<module>../net.wotonomy.datastore</module>
<module>../net.wotonomy.foundation</module>
<module>../net.wotonomy.persistence</module>
<module>../net.wotonomy.persistence.adapter.jdbc</module>
<module>../net.wotonomy.ui</module>
<module>../net.wotonomy.ui.swing</module>
<module>../net.wotonomy.web</module>
<module>../net.wotonomy.test</module>
</modules>
<properties>
<maven.compiler.release>11</maven.compiler.release>
</properties>
<ciManagement>
<system>continuum</system>
</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>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>file:///E:/tmp/i-deploy</url>-->
</snapshotRepository>
<site>
<id>website</id>
<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>
</scm>
<developers>
<developer>
<name>Christian Gruber</name>
<email>cgruber@israfil.net</email>
<url>http://www.israfil.net/</url>
<organization>
Israfil Consulting Services Corporation
</organization>
<roles>
<role>Admin</role>
<role>Developer</role>
<role>Build Manager</role>
</roles>
<timezone>-5</timezone>
</developer>
<developer>
<name>Micheal Powers</name>
<email>mpowers@users.sourceforge.net</email>
<url>http://sourceforge.net/users/mpowers/</url>
<roles>
<role>Admin</role>
<role>Developer</role>
</roles>
</developer>
</developers>
</project>
|