]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.aether/pom.xml
Start / stop modules
[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"
2 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>0.13.1-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.support.aether</artifactId>
12 <name>SLC Support Aether</name>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.felix</groupId>
17 <artifactId>maven-bundle-plugin</artifactId>
18 <version>${version.maven-bundle-plugin}</version>
19 <configuration>
20 <instructions>
21 <Export-Package>
22 org.argeo.slc.aether.*
23 </Export-Package>
24 </instructions>
25 </configuration>
26 </plugin>
27 </plugins>
28 </build>
29 <dependencies>
30 <dependency>
31 <groupId>org.argeo.slc.runtime</groupId>
32 <artifactId>org.argeo.slc.core</artifactId>
33 <version>0.13.1-SNAPSHOT</version>
34 </dependency>
35
36 <dependency>
37 <groupId>org.argeo.dep.osgi</groupId>
38 <artifactId>org.argeo.dep.osgi.aether</artifactId>
39 </dependency>
40
41 <dependency>
42 <groupId>org.springframework</groupId>
43 <artifactId>org.springframework.beans</artifactId>
44 </dependency>
45
46 <dependency>
47 <groupId>org.slf4j</groupId>
48 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
49 </dependency>
50
51 <dependency>
52 <groupId>org.eclipse.osgi</groupId>
53 <artifactId>org.eclipse.osgi</artifactId>
54 <scope>provided</scope>
55 </dependency>
56 </dependencies>
57 </project>