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