]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.equinox/pom.xml
Forgotten test value
[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.4-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.support.equinox</artifactId>
11 <name>Argeo 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 <executions>
20 <execution>
21 <goals>
22 <goal>test-jar</goal>
23 </goals>
24 <configuration>
25 <archive>
26 <manifestFile>src/test/resources/META-INF/MANIFEST.MF</manifestFile>
27 </archive>
28 </configuration>
29 </execution>
30 </executions>
31 </plugin>
32 <plugin>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>maven-bundle-plugin</artifactId>
35 <version>${version.maven-bundle-plugin}</version>
36 <configuration>
37 <instructions>
38 <Export-Package>
39 org.argeo.slc.*
40 </Export-Package>
41 </instructions>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46 <dependencies>
47 <dependency>
48 <groupId>org.argeo.slc.runtime</groupId>
49 <artifactId>org.argeo.slc.support.osgi</artifactId>
50 </dependency>
51
52 <!-- Unit Tests -->
53 <dependency>
54 <groupId>org.argeo.slc.runtime</groupId>
55 <artifactId>org.argeo.slc.unit</artifactId>
56 <scope>test</scope>
57 </dependency>
58
59 </dependencies>
60 </project>