]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.equinox/pom.xml
[maven-release-plugin] rollback the release of argeo-slc-0.11.4
[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.11.4-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 OSGi</name>
13 <packaging>jar</packaging>
14 <properties />
15 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-jar-plugin</artifactId>
20 <!--
21 <executions> <execution> <goals> <goal>test-jar</goal> </goals>
22 <configuration> <archive>
23 <manifestFile>src/test/resources/META-INF/MANIFEST.MF</manifestFile>
24 </archive> </configuration> </execution> </executions>
25 -->
26 </plugin>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-surefire-plugin</artifactId>
30 <configuration>
31 <useSystemClassLoader>false</useSystemClassLoader>
32 </configuration>
33 </plugin>
34 <plugin>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>maven-bundle-plugin</artifactId>
37 <version>${version.maven-bundle-plugin}</version>
38 <configuration>
39 <instructions>
40 <Export-Package>
41 org.argeo.slc.*
42 </Export-Package>
43 <Import-Package>*,
44 org.springframework.beans.factory.config,
45 org.springframework.osgi.context.event
46 </Import-Package>
47 </instructions>
48 </configuration>
49 </plugin>
50 </plugins>
51 </build>
52 <dependencies>
53 <dependency>
54 <groupId>org.argeo.slc.runtime</groupId>
55 <artifactId>org.argeo.slc.support.osgi</artifactId>
56 </dependency>
57
58 <!-- Unit Tests -->
59 <dependency>
60 <groupId>org.argeo.slc.runtime</groupId>
61 <artifactId>org.argeo.slc.unit</artifactId>
62 <scope>test</scope>
63 </dependency>
64
65 </dependencies>
66 </project>