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