]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.osgiboot/pom.xml
Build XML String
[gpl/argeo-slc.git] / runtime / org.argeo.slc.osgiboot / 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>argeo-slc</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>../../org.argeo.slc</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.osgiboot</artifactId>
12 <packaging>jar</packaging>
13 <name>Argeo SLC OSGi Boot</name>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 </plugin>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-jar-plugin</artifactId>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-source-plugin</artifactId>
27 </plugin>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-surefire-plugin</artifactId>
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 <Bundle-Activator>org.argeo.slc.osgiboot.Activator</Bundle-Activator>
39 <Private-Package>org.argeo.slc.osgiboot.internal.*</Private-Package>
40 </instructions>
41 </configuration>
42 </plugin>
43 <plugin>
44 <groupId>org.codehaus.mojo</groupId>
45 <artifactId>build-helper-maven-plugin</artifactId>
46 <version>1.1</version>
47 <executions>
48 <execution>
49 <id>attach-artifacts</id>
50 <phase>package</phase>
51 <goals>
52 <goal>attach-artifact</goal>
53 </goals>
54 <configuration>
55 <artifacts>
56 <artifact>
57 <file>src/main/ant/osgiboot.xml</file>
58 <type>xml</type>
59 <classifier>osgiboot</classifier>
60 </artifact>
61 </artifacts>
62 </configuration>
63 </execution>
64 </executions>
65 </plugin>
66
67 </plugins>
68 </build>
69 <dependencies>
70 <dependency>
71 <groupId>org.eclipse.osgi</groupId>
72 <artifactId>org.eclipse.osgi</artifactId>
73 </dependency>
74
75 </dependencies>
76 </project>