]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.support.maven/pom.xml
9f18e0f1a18776d7af28e0a6f0e41a725f07736b
[gpl/argeo-slc.git] / org.argeo.slc.support.maven / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" 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.slc</groupId>
7 <artifactId>argeo-slc</artifactId>
8 <version>2.1.8-SNAPSHOT</version>
9 <relativePath>..</relativePath>
10 </parent>
11 <artifactId>org.argeo.slc.support.maven</artifactId>
12 <packaging>bundle</packaging>
13 <name>SLC Support Maven</name>
14 <properties>
15 <version.aether>1.0.1.v20141111</version.aether>
16 <version.maven>3.2.5</version.maven>
17 <version.wagon>1.0</version.wagon>
18 </properties>
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>maven-bundle-plugin</artifactId>
24
25 <configuration>
26 <instructions>
27 <Export-Package>
28 org.argeo.slc.maven.*
29 </Export-Package>
30 <Import-Package>
31 org.w3c.dom.*;version="0.0.0",
32 org.xml.sax.*;version="0.0.0",
33 com.google.*;resolution:=optional,
34 javax.*;resolution:=optional,
35 com.sun.*;resolution:=optional,
36 org.objectweb.asm.*;resolution:=optional,
37 *;resolution:=optional
38 </Import-Package>
39 <_exportcontents>
40 org.apache.maven.*;version=${version.maven},
41 </_exportcontents>
42 <Private-Package>org.apache.xbean.*</Private-Package>
43 <Embed-Transitive>true</Embed-Transitive>
44 <Embed-Directory>lib</Embed-Directory>
45 <Embed-Dependency>*;scope=compile;inline=false</Embed-Dependency>
46 </instructions>
47 </configuration>
48 </plugin>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-dependency-plugin</artifactId>
52 <executions>
53 <execution>
54 <id>copy-dependencies</id>
55 <phase>process-resources</phase>
56 <goals>
57 <goal>copy-dependencies</goal>
58 </goals>
59 <configuration>
60 <excludeScope>provided</excludeScope>
61 <outputDirectory>lib</outputDirectory>
62 </configuration>
63 </execution>
64 </executions>
65 </plugin>
66 </plugins>
67 </build>
68 <dependencies>
69 <dependency>
70 <groupId>org.argeo.slc</groupId>
71 <artifactId>org.argeo.slc.api</artifactId>
72 <version>2.1.8-SNAPSHOT</version>
73 <scope>provided</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.argeo.slc</groupId>
77 <artifactId>org.argeo.slc.support</artifactId>
78 <version>2.1.8-SNAPSHOT</version>
79 <scope>provided</scope>
80 </dependency>
81
82 <!-- <dependency> <groupId>org.argeo.dep.osgi</groupId> <artifactId>org.argeo.dep.osgi.maven.embedder</artifactId>
83 </dependency> -->
84 <!-- <dependency> -->
85 <!-- <groupId>org.argeo.tp.spring</groupId> -->
86 <!-- <artifactId>org.springframework.beans</artifactId> -->
87 <!-- </dependency> -->
88 <!-- <dependency> -->
89 <!-- <groupId>org.argeo.tp.apache.commons</groupId> -->
90 <!-- <artifactId>org.apache.commons.io</artifactId> -->
91 <!-- </dependency> -->
92
93 <!-- <dependency> -->
94 <!-- <groupId>org.argeo.tp.misc</groupId> -->
95 <!-- <artifactId>org.slf4j.commons.logging</artifactId> -->
96 <!-- </dependency> -->
97
98 <dependency>
99 <groupId>org.apache.maven</groupId>
100 <artifactId>maven-embedder</artifactId>
101 <version>${version.maven}</version>
102 <optional>true</optional>
103 <scope>compile</scope>
104 <exclusions>
105 <exclusion>
106 <groupId>org.slf4j</groupId>
107 <artifactId>slf4j-api</artifactId>
108 </exclusion>
109 <exclusion>
110 <groupId>commons-logging</groupId>
111 <artifactId>commons-logging</artifactId>
112 </exclusion>
113 <exclusion>
114 <groupId>commons-cli</groupId>
115 <artifactId>commons-cli</artifactId>
116 </exclusion>
117 <exclusion>
118 <groupId>org.eclipse.aether</groupId>
119 <artifactId>aether-spi</artifactId>
120 </exclusion>
121 <exclusion>
122 <groupId>org.eclipse.aether</groupId>
123 <artifactId>aether-api</artifactId>
124 </exclusion>
125 <exclusion>
126 <groupId>org.eclipse.aether</groupId>
127 <artifactId>aether-util</artifactId>
128 </exclusion>
129 <exclusion>
130 <groupId>org.eclipse.aether</groupId>
131 <artifactId>aether-impl</artifactId>
132 </exclusion>
133 </exclusions>
134 </dependency>
135 <dependency>
136 <groupId>org.eclipse.aether</groupId>
137 <artifactId>aether-transport-wagon</artifactId>
138 <version>${version.aether}</version>
139 <optional>true</optional>
140 <scope>compile</scope>
141 <exclusions>
142 <exclusion>
143 <groupId>commons-logging</groupId>
144 <artifactId>commons-logging</artifactId>
145 </exclusion>
146 <exclusion>
147 <groupId>commons-logging</groupId>
148 <artifactId>commons-logging-api</artifactId>
149 </exclusion>
150 <exclusion>
151 <groupId>log4j</groupId>
152 <artifactId>log4j</artifactId>
153 </exclusion>
154 <exclusion>
155 <groupId>javax.inject</groupId>
156 <artifactId>javax.inject</artifactId>
157 </exclusion>
158 <exclusion>
159 <groupId>junit</groupId>
160 <artifactId>junit</artifactId>
161 </exclusion>
162 <exclusion>
163 <groupId>aopalliance</groupId>
164 <artifactId>aopalliance</artifactId>
165 </exclusion>
166 <exclusion>
167 <groupId>com.google.guava</groupId>
168 <artifactId>guava</artifactId>
169 </exclusion>
170 <exclusion>
171 <groupId>org.eclipse.aether</groupId>
172 <artifactId>aether-spi</artifactId>
173 </exclusion>
174 <exclusion>
175 <groupId>org.eclipse.aether</groupId>
176 <artifactId>aether-api</artifactId>
177 </exclusion>
178 <exclusion>
179 <groupId>org.eclipse.aether</groupId>
180 <artifactId>aether-util</artifactId>
181 </exclusion>
182 </exclusions>
183 </dependency>
184 <dependency>
185 <groupId>org.apache.maven.wagon</groupId>
186 <artifactId>wagon-provider-api</artifactId>
187 <version>${version.wagon}</version>
188 <optional>true</optional>
189 <scope>compile</scope>
190 <exclusions>
191 <exclusion>
192 <groupId>commons-logging</groupId>
193 <artifactId>commons-logging</artifactId>
194 </exclusion>
195 </exclusions>
196 </dependency>
197 <dependency>
198 <groupId>org.apache.maven.wagon</groupId>
199 <artifactId>wagon-file</artifactId>
200 <version>${version.wagon}</version>
201 <optional>true</optional>
202 <scope>compile</scope>
203 <exclusions>
204 <exclusion>
205 <groupId>commons-logging</groupId>
206 <artifactId>commons-logging</artifactId>
207 </exclusion>
208 </exclusions>
209 </dependency>
210 <dependency>
211 <groupId>org.apache.maven.wagon</groupId>
212 <artifactId>wagon-http-lightweight</artifactId>
213 <version>${version.wagon}</version>
214 <optional>true</optional>
215 <scope>compile</scope>
216 <exclusions>
217 <exclusion>
218 <groupId>nekohtml</groupId>
219 <artifactId>xercesMinimal</artifactId>
220 </exclusion>
221 <exclusion>
222 <groupId>commons-logging</groupId>
223 <artifactId>commons-logging</artifactId>
224 </exclusion>
225 <exclusion>
226 <groupId>commons-io</groupId>
227 <artifactId>commons-io</artifactId>
228 </exclusion>
229 </exclusions>
230 </dependency>
231 <dependency>
232 <groupId>org.apache.maven.wagon</groupId>
233 <artifactId>wagon-webdav-jackrabbit</artifactId>
234 <version>${version.wagon}</version>
235 <optional>true</optional>
236 <scope>compile</scope>
237 <exclusions>
238 <exclusion>
239 <groupId>org.slf4j</groupId>
240 <artifactId>slf4j-nop</artifactId>
241 </exclusion>
242 <exclusion>
243 <groupId>org.apache.jackrabbit</groupId>
244 <artifactId>jackrabbit-webdav</artifactId>
245 </exclusion>
246 </exclusions>
247 </dependency>
248 <!-- <dependency> -->
249 <!-- <groupId>org.eclipse.sisu</groupId> -->
250 <!-- <artifactId>org.eclipse.sisu.plexus</artifactId> -->
251 <!-- <version>0.3.3</version> -->
252 <!-- </dependency> -->
253
254 <!-- <dependency> -->
255 <!-- <groupId>org.argeo.tp.aether</groupId> -->
256 <!-- <artifactId>org.eclipse.aether.api</artifactId> -->
257 <!-- <scope>provided</scope> -->
258 <!-- </dependency> -->
259
260 <!-- <dependency> -->
261 <!-- <groupId>org.argeo.tp.sdk</groupId> -->
262 <!-- <artifactId>org.junit</artifactId> -->
263 <!-- <scope>provided</scope> -->
264 <!-- </dependency> -->
265 </dependencies>
266
267 <repositories>
268 <repository>
269 <id>central</id>
270 <url>https://repo1.maven.org/maven2/</url>
271 <releases>
272 <enabled>true</enabled>
273 </releases>
274 <snapshots>
275 <enabled>false</enabled>
276 </snapshots>
277 </repository>
278 </repositories>
279 </project>