]> git.argeo.org Git - gpl/argeo-suite.git/blob - pom.xml
7d870645e194ef0929364a6a8fcba7f34a9d7f9a
[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-lib</artifactId>
10 <packaging>pom</packaging>
11 <name>Parent POM for Argeo Suite Extensions</name>
12 <description />
13 <version>2.1.21</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.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</argeo.rpm.stagingRepository>
22 <git.rw />
23 </properties>
24 <dependencies>
25 <dependency>
26 <groupId>org.argeo.tp.equinox</groupId>
27 <artifactId>org.eclipse.osgi</artifactId>
28 <scope>provided</scope>
29 </dependency>
30 <dependency>
31 <groupId>org.argeo.suite</groupId>
32 <artifactId>org.argeo.suite.dep.ui.rap</artifactId>
33 <version>2.1.21</version>
34 <scope>provided</scope>
35 <exclusions>
36 <exclusion>
37 <groupId>org.argeo.tp.apache</groupId>
38 <artifactId>org.apache.xerces</artifactId>
39 </exclusion>
40 <!-- Avoid slf4j implementations lurking in the classpath. -->
41 <exclusion>
42 <groupId>org.argeo.tp.sdk</groupId>
43 <artifactId>biz.aQute.bndlib</artifactId>
44 </exclusion>
45 <exclusion>
46 <groupId>org.argeo.tp.misc</groupId>
47 <artifactId>slf4j.osgi</artifactId>
48 </exclusion>
49 </exclusions>
50 </dependency>
51
52 <!-- SDK -->
53 <dependency>
54 <groupId>org.argeo.tp.sdk</groupId>
55 <artifactId>org.junit</artifactId>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.argeo.tp.sdk</groupId>
60 <artifactId>org.hamcrest</artifactId>
61 <scope>test</scope>
62 </dependency>
63 </dependencies>
64 <dependencyManagement>
65 <dependencies>
66 <dependency>
67 <groupId>org.argeo.tp</groupId>
68 <artifactId>argeo-tp</artifactId>
69 <version>${version.argeo-tp}</version>
70 <type>pom</type>
71 <scope>import</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.argeo.tp</groupId>
75 <artifactId>argeo-tp-rap-e4</artifactId>
76 <version>${version.argeo-tp}</version>
77 <type>pom</type>
78 <scope>import</scope>
79 </dependency>
80 </dependencies>
81 </dependencyManagement>
82 <repositories>
83 <repository>
84 <id>argeo</id>
85 <url>http://forge.argeo.org/data/java/argeo-2.1</url>
86 <releases>
87 <enabled>true</enabled>
88 <updatePolicy>daily</updatePolicy>
89 <checksumPolicy>warn</checksumPolicy>
90 </releases>
91 <snapshots>
92 <enabled>false</enabled>
93 </snapshots>
94 </repository>
95 </repositories>
96 <reporting>
97 <plugins>
98 <plugin>
99 <artifactId>maven-project-info-reports-plugin</artifactId>
100 <version>2.9</version>
101 <reportSets>
102 <reportSet>
103 <reports>
104 <report>index</report>
105 <report>summary</report>
106 <report>license</report>
107 <report>scm</report>
108 </reports>
109 </reportSet>
110 </reportSets>
111 </plugin>
112 <plugin>
113 <artifactId>maven-javadoc-plugin</artifactId>
114 <version>3.0.0</version>
115 <configuration>
116 <failOnError>false</failOnError>
117 <additionalJOption>-Xdoclint:none</additionalJOption>
118 <excludePackageNames>*.internal.*,org.eclipse.*</excludePackageNames>
119 <encoding>UTF-8</encoding>
120 <detectLinks>true</detectLinks>
121 <links>
122 <link>http://docs.oracle.com/javase/8/docs/api</link>
123 <link>https://osgi.org/javadoc/r5/core</link>
124 <link>https://osgi.org/javadoc/r5/enterprise</link>
125 <link>https://docs.adobe.com/docs/en/spec/javax.jcr/javadocs/jcr-2.0</link>
126 <link>http://help.eclipse.org/oxygen/topic/org.eclipse.platform.doc.isv/reference/api</link>
127 <link>http://docs.spring.io/spring/docs/3.2.x/javadoc-api</link>
128 </links>
129 </configuration>
130 <reportSets>
131 <reportSet>
132 <id>aggregate-javadoc</id>
133 <inherited>false</inherited>
134 <reports>
135 <report>aggregate</report>
136 </reports>
137 </reportSet>
138 <reportSet>
139 <id>javadoc</id>
140 <reports />
141 </reportSet>
142 </reportSets>
143 </plugin>
144 <plugin>
145 <artifactId>maven-jxr-plugin</artifactId>
146 <version>2.5</version>
147 <reportSets>
148 <reportSet>
149 <id>aggregate-jxr</id>
150 <inherited>false</inherited>
151 <reports>
152 <report>aggregate</report>
153 </reports>
154 </reportSet>
155 <reportSet>
156 <id>jxr</id>
157 <reports />
158 </reportSet>
159 </reportSets>
160 </plugin>
161 </plugins>
162 </reporting>
163
164 <scm>
165 <tag>argeo-suite-2.1.21</tag>
166 </scm>
167 </project>