]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.support.maven/pom.xml
Prepare next development cycle
[gpl/argeo-slc.git] / org.argeo.slc.support.maven / 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.slc</groupId>
5 <artifactId>runtime</artifactId>
6 <version>0.13.2-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.support.maven</artifactId>
11 <packaging>bundle</packaging>
12 <name>SLC Support Maven</name>
13 <properties>
14 <version.aether>1.11</version.aether>
15 <version.maven>3.0.3</version.maven>
16 <version.wagon>1.0-beta-7</version.wagon>
17 </properties>
18 <build>
19 <plugins>
20 <plugin>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>maven-bundle-plugin</artifactId>
23
24 <configuration>
25 <instructions>
26 <Export-Package>
27 org.argeo.slc.maven.*
28 </Export-Package>
29 <Import-Package>
30 com.google.*;resolution:=optional,
31 javax.*;resolution:=optional,
32 com.sun.*;resolution:=optional,
33 org.objectweb.asm.*;resolution:=optional,
34 *
35 </Import-Package>
36 <_exportcontents>
37 org.apache.maven.*;version=${version.maven},
38 </_exportcontents>
39 <Private-Package>org.apache.xbean.*</Private-Package>
40 <Embed-Transitive>true</Embed-Transitive>
41 <Embed-Directory>lib</Embed-Directory>
42 <Embed-Dependency>*;scope=provided;inline=false</Embed-Dependency>
43 </instructions>
44 </configuration>
45 </plugin>
46 <plugin>
47 <groupId>org.apache.maven.plugins</groupId>
48 <artifactId>maven-dependency-plugin</artifactId>
49 <executions>
50 <execution>
51 <id>copy-dependencies</id>
52 <phase>process-resources</phase>
53 <goals>
54 <goal>copy-dependencies</goal>
55 </goals>
56 <configuration>
57 <includeScope>provided</includeScope>
58 <outputDirectory>lib</outputDirectory>
59 </configuration>
60 </execution>
61 </executions>
62 </plugin>
63 </plugins>
64 </build>
65 <dependencies>
66 <dependency>
67 <groupId>org.argeo.slc.runtime</groupId>
68 <artifactId>org.argeo.slc.specs</artifactId>
69 <version>0.13.2-SNAPSHOT</version>
70 </dependency>
71 <dependency>
72 <groupId>org.argeo.slc.runtime</groupId>
73 <artifactId>org.argeo.slc.support.aether</artifactId>
74 <version>0.13.2-SNAPSHOT</version>
75 </dependency>
76
77 <!-- <dependency> <groupId>org.argeo.dep.osgi</groupId> <artifactId>org.argeo.dep.osgi.maven.embedder</artifactId>
78 </dependency> -->
79 <dependency>
80 <groupId>org.springframework</groupId>
81 <artifactId>org.springframework.beans</artifactId>
82 </dependency>
83 <dependency>
84 <groupId>org.apache.commons</groupId>
85 <artifactId>com.springsource.org.apache.commons.io</artifactId>
86 </dependency>
87
88 <dependency>
89 <groupId>org.slf4j</groupId>
90 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
91 </dependency>
92
93 <dependency>
94 <groupId>org.apache.maven</groupId>
95 <artifactId>maven-embedder</artifactId>
96 <version>${version.maven}</version>
97 <optional>true</optional>
98 <scope>provided</scope>
99 <exclusions>
100 <exclusion>
101 <groupId>commons-logging</groupId>
102 <artifactId>commons-logging</artifactId>
103 </exclusion>
104 <exclusion>
105 <groupId>commons-cli</groupId>
106 <artifactId>commons-cli</artifactId>
107 </exclusion>
108 <exclusion>
109 <groupId>org.sonatype.aether</groupId>
110 <artifactId>aether-spi</artifactId>
111 </exclusion>
112 <exclusion>
113 <groupId>org.sonatype.aether</groupId>
114 <artifactId>aether-api</artifactId>
115 </exclusion>
116 <exclusion>
117 <groupId>org.sonatype.aether</groupId>
118 <artifactId>aether-util</artifactId>
119 </exclusion>
120 </exclusions>
121 </dependency>
122 <dependency>
123 <groupId>org.sonatype.aether</groupId>
124 <artifactId>aether-connector-wagon</artifactId>
125 <version>${version.aether}</version>
126 <optional>true</optional>
127 <scope>provided</scope>
128 <exclusions>
129 <exclusion>
130 <groupId>commons-logging</groupId>
131 <artifactId>commons-logging</artifactId>
132 </exclusion>
133 <exclusion>
134 <groupId>commons-logging</groupId>
135 <artifactId>commons-logging-api</artifactId>
136 </exclusion>
137 <exclusion>
138 <groupId>log4j</groupId>
139 <artifactId>log4j</artifactId>
140 </exclusion>
141 <exclusion>
142 <groupId>junit</groupId>
143 <artifactId>junit</artifactId>
144 </exclusion>
145 <exclusion>
146 <groupId>org.sonatype.aether</groupId>
147 <artifactId>aether-spi</artifactId>
148 </exclusion>
149 <exclusion>
150 <groupId>org.sonatype.aether</groupId>
151 <artifactId>aether-api</artifactId>
152 </exclusion>
153 <exclusion>
154 <groupId>org.sonatype.aether</groupId>
155 <artifactId>aether-util</artifactId>
156 </exclusion>
157 </exclusions>
158 </dependency>
159 <dependency>
160 <groupId>org.apache.maven.wagon</groupId>
161 <artifactId>wagon-provider-api</artifactId>
162 <version>${version.wagon}</version>
163 <optional>true</optional>
164 <scope>provided</scope>
165 <exclusions>
166 <exclusion>
167 <groupId>commons-logging</groupId>
168 <artifactId>commons-logging</artifactId>
169 </exclusion>
170 </exclusions>
171 </dependency>
172 <dependency>
173 <groupId>org.apache.maven.wagon</groupId>
174 <artifactId>wagon-file</artifactId>
175 <version>${version.wagon}</version>
176 <optional>true</optional>
177 <scope>provided</scope>
178 <exclusions>
179 <exclusion>
180 <groupId>commons-logging</groupId>
181 <artifactId>commons-logging</artifactId>
182 </exclusion>
183 </exclusions>
184 </dependency>
185 <dependency>
186 <groupId>org.apache.maven.wagon</groupId>
187 <artifactId>wagon-http-lightweight</artifactId>
188 <version>${version.wagon}</version>
189 <optional>true</optional>
190 <scope>provided</scope>
191 <exclusions>
192 <exclusion>
193 <groupId>nekohtml</groupId>
194 <artifactId>xercesMinimal</artifactId>
195 </exclusion>
196 <exclusion>
197 <groupId>commons-logging</groupId>
198 <artifactId>commons-logging</artifactId>
199 </exclusion>
200 </exclusions>
201 </dependency>
202 <dependency>
203 <groupId>org.apache.maven.wagon</groupId>
204 <artifactId>wagon-webdav-jackrabbit</artifactId>
205 <version>${version.wagon}</version>
206 <optional>true</optional>
207 <scope>provided</scope>
208 <exclusions>
209 <exclusion>
210 <groupId>org.slf4j</groupId>
211 <artifactId>slf4j-nop</artifactId>
212 </exclusion>
213 <exclusion>
214 <groupId>org.apache.jackrabbit</groupId>
215 <artifactId>jackrabbit-webdav</artifactId>
216 </exclusion>
217 </exclusions>
218 </dependency>
219
220 <dependency>
221 <groupId>org.argeo.dep.osgi</groupId>
222 <artifactId>org.argeo.dep.osgi.aether</artifactId>
223 </dependency>
224
225 <dependency>
226 <groupId>org.junit</groupId>
227 <artifactId>com.springsource.junit</artifactId>
228 </dependency>
229 </dependencies>
230 </project>