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