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