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