]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.equinox/pom.xml
Work in progress - work on modular distributions.
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.equinox / 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.17-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
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 <!-- FIXME class "org.osgi.service.condpermadmin.ConditionalPermissionUpdate"'s
21 signer information does not match signer information of other classes in
22 the same package -->
23 <skipTests>true</skipTests>
24 </configuration>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.felix</groupId>
28 <artifactId>maven-bundle-plugin</artifactId>
29 <configuration>
30 <instructions>
31 <Export-Package>
32 org.argeo.slc.*
33 </Export-Package>
34 <Import-Package>*,
35 org.springframework.beans.factory.config,
36 org.springframework.osgi.context.event,
37 org.springframework.core.io
38 </Import-Package>
39 </instructions>
40 </configuration>
41 </plugin>
42 </plugins>
43 </build>
44 <dependencies>
45 <dependency>
46 <groupId>org.argeo.slc</groupId>
47 <artifactId>org.argeo.slc.support.osgi</artifactId>
48 <version>1.1.17-SNAPSHOT</version>
49 </dependency>
50
51 <dependency>
52 <groupId>org.argeo.tp</groupId>
53 <artifactId>org.eclipse.osgi</artifactId>
54 </dependency>
55
56 <!-- Unit Tests -->
57 <dependency>
58 <groupId>org.argeo.slc</groupId>
59 <artifactId>org.argeo.slc.unit</artifactId>
60 <scope>test</scope>
61 <version>1.1.17-SNAPSHOT</version>
62 </dependency>
63 </dependencies>
64 </project>