]> git.argeo.org Git - gpl/argeo-suite.git/blob - pom.xml
Always load terms.
[gpl/argeo-suite.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo.maven</groupId>
7 <artifactId>argeo-osgi-parent</artifactId>
8 <version>2.1.3</version>
9 </parent>
10 <groupId>org.argeo.suite</groupId>
11 <artifactId>argeo-suite</artifactId>
12 <version>2.3.1-SNAPSHOT</version>
13 <name>Argeo Suite</name>
14 <packaging>pom</packaging>
15 <url>http://www.argeo.org/</url>
16 <properties>
17 <!-- Dependencies -->
18 <version.argeo-tp>2.1.27</version.argeo-tp>
19 <version.argeo-tp-extras>2.1.13</version.argeo-tp-extras>
20 <version.argeo-commons>2.3.1-SNAPSHOT</version.argeo-commons>
21 <version.argeo-suite-icons>2.1.0</version.argeo-suite-icons>
22
23 <argeo.rpm.stagingRepository>/srv/rpmfactory/unstable/argeo-osgi-2/argeo</argeo.rpm.stagingRepository>
24 <git.rw />
25 </properties>
26 <modules>
27 <module>core</module>
28 <!-- Functional areas -->
29 <module>people</module>
30 <module>library</module>
31 <module>environment</module>
32 <module>publishing</module>
33 <module>knowledge</module>
34
35 <!-- Packaging -->
36 <module>dep</module>
37 <module>dist</module>
38 <module>lib</module>
39 </modules>
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 <organization>
47 <name>Argeo GmbH</name>
48 </organization>
49 <inceptionYear>2014</inceptionYear>
50 <licenses>
51 <license>
52 <name>GPL-3.0-or-later</name>
53 <url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
54 <distribution>repo</distribution>
55 </license>
56 </licenses>
57 <dependencies>
58 <dependency>
59 <groupId>org.argeo.tp</groupId>
60 <artifactId>argeo-tp</artifactId>
61 <version>${version.argeo-tp}</version>
62 <scope>provided</scope>
63 <exclusions>
64 <exclusion>
65 <groupId>org.argeo.tp.apache</groupId>
66 <artifactId>org.apache.xerces</artifactId>
67 </exclusion>
68 <!-- Avoid slf4j implementations lurking in the classpath. -->
69 <exclusion>
70 <groupId>org.argeo.tp.sdk</groupId>
71 <artifactId>biz.aQute.bndlib</artifactId>
72 </exclusion>
73 <exclusion>
74 <groupId>org.argeo.tp.misc</groupId>
75 <artifactId>slf4j.osgi</artifactId>
76 </exclusion>
77 </exclusions>
78 </dependency>
79 </dependencies>
80 <dependencyManagement>
81 <dependencies>
82 <dependency>
83 <groupId>org.argeo.tp</groupId>
84 <artifactId>argeo-tp</artifactId>
85 <version>${version.argeo-tp}</version>
86 <type>pom</type>
87 <scope>import</scope>
88 </dependency>
89 <dependency>
90 <groupId>org.argeo.tp</groupId>
91 <artifactId>argeo-tp-rap-e4</artifactId>
92 <version>${version.argeo-tp}</version>
93 <type>pom</type>
94 <scope>import</scope>
95 </dependency>
96 </dependencies>
97 </dependencyManagement>
98 <repositories>
99 <repository>
100 <id>argeo</id>
101 <url>http://forge.argeo.org/data/java/argeo-2.1/</url>
102 <releases>
103 <enabled>true</enabled>
104 <updatePolicy>daily</updatePolicy>
105 <checksumPolicy>warn</checksumPolicy>
106 </releases>
107 <snapshots>
108 <enabled>false</enabled>
109 </snapshots>
110 </repository>
111 <repository>
112 <id>argeo-unstable</id>
113 <url>http://forge.argeo.org/data/java/argeo-2.3/</url>
114 <releases>
115 <enabled>true</enabled>
116 <updatePolicy>never</updatePolicy>
117 <checksumPolicy>warn</checksumPolicy>
118 </releases>
119 <snapshots>
120 <enabled>false</enabled>
121 </snapshots>
122 </repository>
123 </repositories>
124 <reporting>
125 <plugins>
126 <plugin>
127 <artifactId>maven-project-info-reports-plugin</artifactId>
128 <version>2.9</version>
129 <reportSets>
130 <reportSet>
131 <reports>
132 <report>index</report>
133 <report>summary</report>
134 <report>license</report>
135 <report>scm</report>
136 </reports>
137 </reportSet>
138 </reportSets>
139 </plugin>
140 <plugin>
141 <artifactId>maven-javadoc-plugin</artifactId>
142 <version>3.0.0</version>
143 <configuration>
144 <failOnError>false</failOnError>
145 <additionalJOption>-Xdoclint:none</additionalJOption>
146 <excludePackageNames>*.internal.*,org.eclipse.*</excludePackageNames>
147 <encoding>UTF-8</encoding>
148 <detectLinks>true</detectLinks>
149 <links>
150 <link>http://docs.oracle.com/javase/8/docs/api</link>
151 <link>https://osgi.org/javadoc/r5/core</link>
152 <link>https://osgi.org/javadoc/r5/enterprise</link>
153 <link>https://docs.adobe.com/docs/en/spec/javax.jcr/javadocs/jcr-2.0</link>
154 <link>http://help.eclipse.org/oxygen/topic/org.eclipse.platform.doc.isv/reference/api</link>
155 <link>http://docs.spring.io/spring/docs/3.2.x/javadoc-api</link>
156 </links>
157 </configuration>
158 <reportSets>
159 <reportSet>
160 <id>aggregate-javadoc</id>
161 <inherited>false</inherited>
162 <reports>
163 <report>aggregate</report>
164 </reports>
165 </reportSet>
166 <reportSet>
167 <id>javadoc</id>
168 <reports />
169 </reportSet>
170 </reportSets>
171 </plugin>
172 <plugin>
173 <artifactId>maven-jxr-plugin</artifactId>
174 <version>2.5</version>
175 <reportSets>
176 <reportSet>
177 <id>aggregate-jxr</id>
178 <inherited>false</inherited>
179 <reports>
180 <report>aggregate</report>
181 </reports>
182 </reportSet>
183 <reportSet>
184 <id>jxr</id>
185 <reports />
186 </reportSet>
187 </reportSets>
188 </plugin>
189 </plugins>
190 </reporting>
191 <distributionManagement>
192 <repository>
193 <id>staging</id>
194 <url>dav:https://forge.argeo.org/data/java/argeo-2.3</url>
195 <uniqueVersion>false</uniqueVersion>
196 </repository>
197 <site>
198 <id>staging</id>
199 <url>file:///srv/docfactory/argeo-2.1/site/argeo-suite/</url>
200 </site>
201 </distributionManagement>
202 </project>