]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.aether/pom.xml
Import Maven dependencies
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.aether / 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.aether</artifactId>
11 <name>SLC Support Aether</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>maven-bundle-plugin</artifactId>
17
18 <configuration>
19 <instructions>
20 <Export-Package>
21 org.argeo.slc.aether.*
22 </Export-Package>
23 </instructions>
24 </configuration>
25 </plugin>
26 </plugins>
27 </build>
28 <dependencies>
29 <dependency>
30 <groupId>org.argeo.slc.runtime</groupId>
31 <artifactId>org.argeo.slc.core</artifactId>
32 <version>0.13.2-SNAPSHOT</version>
33 </dependency>
34
35 <dependency>
36 <groupId>org.argeo.dep.osgi</groupId>
37 <artifactId>org.argeo.dep.osgi.aether</artifactId>
38 </dependency>
39
40 <dependency>
41 <groupId>org.springframework</groupId>
42 <artifactId>org.springframework.beans</artifactId>
43 </dependency>
44
45 <dependency>
46 <groupId>org.slf4j</groupId>
47 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
48 </dependency>
49
50 <dependency>
51 <groupId>org.eclipse.osgi</groupId>
52 <artifactId>org.eclipse.osgi</artifactId>
53 <scope>provided</scope>
54 </dependency>
55
56 <!-- Test -->
57 <dependency>
58 <groupId>org.junit</groupId>
59 <artifactId>com.springsource.junit</artifactId>
60 <scope>test</scope>
61 </dependency>
62 </dependencies>
63 </project>