]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.osgiboot/pom.xml
Move server modules
[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>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.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 <configuration>
20 <source>1.4</source>
21 <target>1.4</target>
22 </configuration>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-jar-plugin</artifactId>
27 </plugin>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-source-plugin</artifactId>
31 </plugin>
32 <plugin>
33 <groupId>org.apache.maven.plugins</groupId>
34 <artifactId>maven-surefire-plugin</artifactId>
35 </plugin>
36 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-assembly-plugin</artifactId>
39 <configuration>
40 <descriptors>
41 <descriptor>src/assembly/osgiboot.xml</descriptor>
42 </descriptors>
43 </configuration>
44 <executions>
45 <execution>
46 <id>assembly-osgiboot</id>
47 <phase>package</phase>
48 <goals>
49 <goal>single</goal>
50 </goals>
51 </execution>
52 </executions>
53 </plugin>
54 <plugin>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>maven-bundle-plugin</artifactId>
57 <version>${version.maven-bundle-plugin}</version>
58 <configuration>
59 <instructions>
60 <Bundle-Activator>org.argeo.slc.osgiboot.Activator</Bundle-Activator>
61 </instructions>
62 </configuration>
63 </plugin>
64 <plugin>
65 <groupId>org.codehaus.mojo</groupId>
66 <artifactId>build-helper-maven-plugin</artifactId>
67 <version>1.1</version>
68 <executions>
69 <execution>
70 <id>attach-artifacts</id>
71 <phase>package</phase>
72 <goals>
73 <goal>attach-artifact</goal>
74 </goals>
75 <configuration>
76 <artifacts>
77 <artifact>
78 <file>src/main/ant/osgiboot.xml</file>
79 <type>xml</type>
80 <classifier>osgiboot</classifier>
81 </artifact>
82 </artifacts>
83 </configuration>
84 </execution>
85 </executions>
86 </plugin>
87
88 </plugins>
89 </build>
90 <dependencies>
91 <dependency>
92 <groupId>org.eclipse.osgi</groupId>
93 <artifactId>org.eclipse.osgi</artifactId>
94 </dependency>
95
96 <!-- TEST -->
97 <dependency>
98 <groupId>org.junit</groupId>
99 <artifactId>com.springsource.junit</artifactId>
100 <scope>test</scope>
101 </dependency>
102 </dependencies>
103
104
105 </project>