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