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