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