]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.osgiboot/pom.xml
git-svn-id: https://svn.argeo.org/slc/trunk@2483 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc
[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" 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.runtime</groupId>
5 <artifactId>argeo-slc-runtime</artifactId>
6 <version>0.11.4-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.osgiboot</artifactId>
10 <packaging>jar</packaging>
11 <name>Argeo SLC OSGi Boot</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 </plugin>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-jar-plugin</artifactId>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-source-plugin</artifactId>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-surefire-plugin</artifactId>
29 </plugin>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-assembly-plugin</artifactId>
33 <configuration>
34 <descriptors>
35 <descriptor>src/assembly/osgiboot.xml</descriptor>
36 </descriptors>
37 </configuration>
38 <executions>
39 <execution>
40 <id>assembly-osgiboot</id>
41 <phase>package</phase>
42 <goals>
43 <goal>single</goal>
44 </goals>
45 </execution>
46 </executions>
47 </plugin>
48 <plugin>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>maven-bundle-plugin</artifactId>
51 <version>${version.maven-bundle-plugin}</version>
52 <configuration>
53 <instructions>
54 <Bundle-Activator>org.argeo.slc.osgiboot.Activator</Bundle-Activator>
55 </instructions>
56 </configuration>
57 </plugin>
58 <plugin>
59 <groupId>org.codehaus.mojo</groupId>
60 <artifactId>build-helper-maven-plugin</artifactId>
61 <version>1.1</version>
62 <executions>
63 <execution>
64 <id>attach-artifacts</id>
65 <phase>package</phase>
66 <goals>
67 <goal>attach-artifact</goal>
68 </goals>
69 <configuration>
70 <artifacts>
71 <artifact>
72 <file>src/main/ant/osgiboot.xml</file>
73 <type>xml</type>
74 <classifier>osgiboot</classifier>
75 </artifact>
76 </artifacts>
77 </configuration>
78 </execution>
79 </executions>
80 </plugin>
81
82 </plugins>
83 </build>
84 <dependencies>
85 <dependency>
86 <groupId>org.eclipse.osgi</groupId>
87 <artifactId>org.eclipse.osgi</artifactId>
88 </dependency>
89
90 <!-- TEST -->
91 <dependency>
92 <groupId>org.junit</groupId>
93 <artifactId>com.springsource.junit</artifactId>
94 <scope>test</scope>
95 </dependency>
96 </dependencies>
97
98
99 </project>