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