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