]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
51aa9d2e46dbc4bdc12b5909393e9a7c99130780
[gpl/argeo-slc.git] / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.slc</groupId>
6 <artifactId>runtime</artifactId>
7 <version>1.1.2-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.support.maven</artifactId>
12 <packaging>bundle</packaging>
13 <name>SLC Support Maven</name>
14 <properties>
15 <version.aether>1.11</version.aether>
16 <version.maven>3.0.3</version.maven>
17 <version.wagon>1.0-beta-7</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 *
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=provided;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 <includeScope>provided</includeScope>
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.runtime</groupId>
71 <artifactId>org.argeo.slc.specs</artifactId>
72 <version>1.1.2-SNAPSHOT</version>
73 </dependency>
74 <dependency>
75 <groupId>org.argeo.slc.runtime</groupId>
76 <artifactId>org.argeo.slc.support.aether</artifactId>
77 <version>1.1.2-SNAPSHOT</version>
78 </dependency>
79
80 <!-- <dependency> <groupId>org.argeo.dep.osgi</groupId> <artifactId>org.argeo.dep.osgi.maven.embedder</artifactId>
81 </dependency> -->
82 <dependency>
83 <groupId>org.argeo.tp</groupId>
84 <artifactId>org.springframework.beans</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.argeo.tp</groupId>
88 <artifactId>org.apache.commons.io</artifactId>
89 </dependency>
90
91 <dependency>
92 <groupId>org.argeo.tp</groupId>
93 <artifactId>slf4j.org.apache.commons.logging</artifactId>
94 </dependency>
95
96 <dependency>
97 <groupId>org.apache.maven</groupId>
98 <artifactId>maven-embedder</artifactId>
99 <version>${version.maven}</version>
100 <optional>true</optional>
101 <scope>provided</scope>
102 <exclusions>
103 <exclusion>
104 <groupId>commons-logging</groupId>
105 <artifactId>commons-logging</artifactId>
106 </exclusion>
107 <exclusion>
108 <groupId>commons-cli</groupId>
109 <artifactId>commons-cli</artifactId>
110 </exclusion>
111 <exclusion>
112 <groupId>org.sonatype.aether</groupId>
113 <artifactId>aether-spi</artifactId>
114 </exclusion>
115 <exclusion>
116 <groupId>org.sonatype.aether</groupId>
117 <artifactId>aether-api</artifactId>
118 </exclusion>
119 <exclusion>
120 <groupId>org.sonatype.aether</groupId>
121 <artifactId>aether-util</artifactId>
122 </exclusion>
123 </exclusions>
124 </dependency>
125 <dependency>
126 <groupId>org.sonatype.aether</groupId>
127 <artifactId>aether-connector-wagon</artifactId>
128 <version>${version.aether}</version>
129 <optional>true</optional>
130 <scope>provided</scope>
131 <exclusions>
132 <exclusion>
133 <groupId>commons-logging</groupId>
134 <artifactId>commons-logging</artifactId>
135 </exclusion>
136 <exclusion>
137 <groupId>commons-logging</groupId>
138 <artifactId>commons-logging-api</artifactId>
139 </exclusion>
140 <exclusion>
141 <groupId>log4j</groupId>
142 <artifactId>log4j</artifactId>
143 </exclusion>
144 <exclusion>
145 <groupId>junit</groupId>
146 <artifactId>junit</artifactId>
147 </exclusion>
148 <exclusion>
149 <groupId>org.sonatype.aether</groupId>
150 <artifactId>aether-spi</artifactId>
151 </exclusion>
152 <exclusion>
153 <groupId>org.sonatype.aether</groupId>
154 <artifactId>aether-api</artifactId>
155 </exclusion>
156 <exclusion>
157 <groupId>org.sonatype.aether</groupId>
158 <artifactId>aether-util</artifactId>
159 </exclusion>
160 </exclusions>
161 </dependency>
162 <dependency>
163 <groupId>org.apache.maven.wagon</groupId>
164 <artifactId>wagon-provider-api</artifactId>
165 <version>${version.wagon}</version>
166 <optional>true</optional>
167 <scope>provided</scope>
168 <exclusions>
169 <exclusion>
170 <groupId>commons-logging</groupId>
171 <artifactId>commons-logging</artifactId>
172 </exclusion>
173 </exclusions>
174 </dependency>
175 <dependency>
176 <groupId>org.apache.maven.wagon</groupId>
177 <artifactId>wagon-file</artifactId>
178 <version>${version.wagon}</version>
179 <optional>true</optional>
180 <scope>provided</scope>
181 <exclusions>
182 <exclusion>
183 <groupId>commons-logging</groupId>
184 <artifactId>commons-logging</artifactId>
185 </exclusion>
186 </exclusions>
187 </dependency>
188 <dependency>
189 <groupId>org.apache.maven.wagon</groupId>
190 <artifactId>wagon-http-lightweight</artifactId>
191 <version>${version.wagon}</version>
192 <optional>true</optional>
193 <scope>provided</scope>
194 <exclusions>
195 <exclusion>
196 <groupId>nekohtml</groupId>
197 <artifactId>xercesMinimal</artifactId>
198 </exclusion>
199 <exclusion>
200 <groupId>commons-logging</groupId>
201 <artifactId>commons-logging</artifactId>
202 </exclusion>
203 </exclusions>
204 </dependency>
205 <dependency>
206 <groupId>org.apache.maven.wagon</groupId>
207 <artifactId>wagon-webdav-jackrabbit</artifactId>
208 <version>${version.wagon}</version>
209 <optional>true</optional>
210 <scope>provided</scope>
211 <exclusions>
212 <exclusion>
213 <groupId>org.slf4j</groupId>
214 <artifactId>slf4j-nop</artifactId>
215 </exclusion>
216 <exclusion>
217 <groupId>org.apache.jackrabbit</groupId>
218 <artifactId>jackrabbit-webdav</artifactId>
219 </exclusion>
220 </exclusions>
221 </dependency>
222
223 <dependency>
224 <groupId>org.argeo.tp</groupId>
225 <artifactId>org.sonatype.aether</artifactId>
226 </dependency>
227
228 <dependency>
229 <groupId>org.argeo.tp</groupId>
230 <artifactId>junit</artifactId>
231 </dependency>
232 </dependencies>
233 </project>