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