]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.equinox/pom.xml
Working GPX import
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.equinox / 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.equinox</artifactId>
12 <name>SLC Support Equinox</name>
13 <packaging>jar</packaging>
14 <properties />
15 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-surefire-plugin</artifactId>
20 <configuration>
21 <useSystemClassLoader>false</useSystemClassLoader>
22 </configuration>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.felix</groupId>
26 <artifactId>maven-bundle-plugin</artifactId>
27 <version>${version.maven-bundle-plugin}</version>
28 <configuration>
29 <instructions>
30 <Export-Package>
31 org.argeo.slc.*
32 </Export-Package>
33 <Import-Package>*,
34 org.springframework.beans.factory.config,
35 org.springframework.osgi.context.event,
36 org.springframework.core.io
37 </Import-Package>
38 </instructions>
39 </configuration>
40 </plugin>
41 </plugins>
42 </build>
43 <dependencies>
44 <dependency>
45 <groupId>org.argeo.slc.runtime</groupId>
46 <artifactId>org.argeo.slc.support.osgi</artifactId>
47 <version>${version.slc}</version>
48 </dependency>
49
50 <dependency>
51 <groupId>org.eclipse.osgi</groupId>
52 <artifactId>org.eclipse.osgi</artifactId>
53 </dependency>
54
55 <!-- Unit Tests -->
56 <dependency>
57 <groupId>org.argeo.slc.runtime</groupId>
58 <artifactId>org.argeo.slc.unit</artifactId>
59 <scope>test</scope>
60 <version>${version.slc}</version>
61 </dependency>
62 </dependencies>
63 </project>