]> git.argeo.org Git - gpl/argeo-suite.git/blob - pom.xml
Browser navigation
[gpl/argeo-suite.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons</groupId>
6 <artifactId>argeo-commons</artifactId>
7 <version>2.1.74-SNAPSHOT</version>
8 </parent>
9 <groupId>org.argeo.suite</groupId>
10 <artifactId>argeo-suite</artifactId>
11 <packaging>pom</packaging>
12 <name>Argeo Suite</name>
13 <description />
14 <version>0.1.13-SNAPSHOT</version>
15 <modules>
16 <!-- Web -->
17 <module>org.argeo.suite.web</module>
18 <module>org.argeo.suite.apps.web</module>
19
20 <!-- Eclipse 4 -->
21 <module>org.argeo.suite.cms</module>
22 <module>org.argeo.suite.e4</module>
23 <module>org.argeo.suite.e4.rap</module>
24 <module>org.argeo.suite.standard</module>
25
26 <!-- Workbench -->
27 <module>org.argeo.suite.apps</module>
28 <module>org.argeo.suite.workbench.rap</module>
29
30 <module>dep</module>
31 <module>dist</module>
32 </modules>
33 <properties>
34 <version.argeo-suite>0.1.13-SNAPSHOT</version.argeo-suite>
35 <developmentCycle.argeo-suite>0.1</developmentCycle.argeo-suite>
36 <version.argeo-connect>2.1.79-SNAPSHOT</version.argeo-connect>
37 <version.argeo-tp-extras>2.1.10</version.argeo-tp-extras>
38 <git.rw />
39 </properties>
40 <scm>
41 <connection>scm:git:http://git.argeo.org/gpl/argeo-suite.git</connection>
42 <url>http://git.argeo.org/?p=gpl/argeo-suite.git;a=summary</url>
43 <developerConnection>scm:git:https://code.argeo.org/git/gpl/argeo-suite.git</developerConnection>
44 <tag>HEAD</tag>
45 </scm>
46 <inceptionYear>2014</inceptionYear>
47 <licenses>
48 <license>
49 <name>GPL v3 with exception</name>
50 <url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
51 <distribution>repo</distribution>
52 <comments><![CDATA[
53 Smart Data Productivity Suite - Lean, robust and secured distributed Java applications
54 Copyright (C) 2017 Argeo GmbH
55
56 This program is free software: you can redistribute it and/or modify
57 it under the terms of the GNU General Public License as published by
58 the Free Software Foundation, either version 3 of the License, or
59 (at your option) any later version.
60
61 This program is distributed in the hope that it will be useful,
62 but WITHOUT ANY WARRANTY; without even the implied warranty of
63 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
64 GNU General Public License for more details.
65
66 You should have received a copy of the GNU General Public License
67 along with this program. If not, see <http://www.gnu.org/licenses />
68
69 Additional permission under GNU GPL version 3 section 7
70
71 If you modify this Program, or any covered work, by linking or combining it
72 with software covered by the terms of the Eclipse Public License, the
73 licensors of this Program grant you additional permission to convey the
74 resulting work. Corresponding Source for a non-source form of such a
75 combination shall include the source code for the parts of such software
76 which are used as well as that of the covered work.]]>
77 </comments>
78 </license>
79 </licenses>
80 <developers>
81 <developer>
82 <id>mbaudier</id>
83 <name>Mathieu Baudier</name>
84 <email><![CDATA[http://mailhide.recaptcha.net/d?k=01EM7GpnvY3k8woQ2tnnZLUA==&c=crsNpHjhOBDPswHG6HD_gXaqymhC69wmBf7wlagcSHw=]]></email>
85 <organization>Argeo</organization>
86 <organizationUrl>http://www.argeo.org</organizationUrl>
87 <roles>
88 <role>architect</role>
89 <role>developer</role>
90 <role>QA</role>
91 </roles>
92 </developer>
93 </developers>
94 <build>
95 <plugins>
96 <plugin>
97 <artifactId>maven-javadoc-plugin</artifactId>
98 <version>2.10.4</version>
99 <configuration>
100 <skip>true</skip>
101 </configuration>
102 </plugin>
103 </plugins>
104 </build>
105 <dependencyManagement>
106 <dependencies>
107 <dependency>
108 <groupId>org.argeo.tp.extras</groupId>
109 <artifactId>argeo-tp-extras</artifactId>
110 <version>${version.argeo-tp-extras}</version>
111 <type>pom</type>
112 <scope>import</scope>
113 </dependency>
114 </dependencies>
115 </dependencyManagement>
116 <dependencies>
117 <!-- RAP workbench -->
118 <dependency>
119 <groupId>org.argeo.tp</groupId>
120 <artifactId>argeo-tp-rap-e3</artifactId>
121 <version>${version.argeo-tp}</version>
122 <type>pom</type>
123 <scope>provided</scope>
124 </dependency>
125 </dependencies>
126 <repositories>
127 <repository>
128 <id>argeo</id>
129 <url>http://forge.argeo.org/data/java/argeo-2.1</url>
130 <releases>
131 <enabled>true</enabled>
132 <updatePolicy>daily</updatePolicy>
133 <checksumPolicy>warn</checksumPolicy>
134 </releases>
135 </repository>
136 <repository>
137 <id>argeo-extras</id>
138 <url>http://forge.argeo.org/data/java/argeo-extras-2.1</url>
139 <releases>
140 <enabled>true</enabled>
141 <updatePolicy>daily</updatePolicy>
142 <checksumPolicy>warn</checksumPolicy>
143 </releases>
144 </repository>
145 </repositories>
146 <distributionManagement>
147 <repository>
148 <id>staging</id>
149 <url>dav:https://forge.argeo.org/data/java/argeo-extras-2.1</url>
150 <uniqueVersion>false</uniqueVersion>
151 </repository>
152 </distributionManagement>
153 </project>