]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.osgiboot/pom.xml
[maven-release-plugin] prepare for next development iteration
[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</groupId>
5 <artifactId>runtime</artifactId>
6 <version>0.12.2-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.osgiboot</artifactId>
11 <packaging>jar</packaging>
12 <name>SLC OSGi Boot</name>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 <configuration>
19 <source>1.4</source>
20 <target>1.4</target>
21 </configuration>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-jar-plugin</artifactId>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-source-plugin</artifactId>
30 </plugin>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-surefire-plugin</artifactId>
34 </plugin>
35 <!--
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 -->
55 <plugin>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>maven-bundle-plugin</artifactId>
58 <version>${version.maven-bundle-plugin}</version>
59 <configuration>
60 <instructions>
61 <Bundle-Activator>org.argeo.slc.osgiboot.Activator</Bundle-Activator>
62 </instructions>
63 </configuration>
64 </plugin>
65 <!--
66 <plugin>
67 <groupId>org.codehaus.mojo</groupId>
68 <artifactId>build-helper-maven-plugin</artifactId>
69 <version>1.1</version>
70 <executions>
71 <execution>
72 <id>attach-artifacts</id>
73 <phase>package</phase>
74 <goals>
75 <goal>attach-artifact</goal>
76 </goals>
77 <configuration>
78 <artifacts>
79 <artifact>
80 <file>src/main/ant/osgiboot.xml</file>
81 <type>xml</type>
82 <classifier>osgiboot</classifier>
83 </artifact>
84 </artifacts>
85 </configuration>
86 </execution>
87 </executions>
88 </plugin>
89 -->
90 </plugins>
91 </build>
92 <dependencies>
93 <dependency>
94 <groupId>org.eclipse.osgi</groupId>
95 <artifactId>org.eclipse.osgi</artifactId>
96 </dependency>
97
98 <!-- TEST -->
99 <dependency>
100 <groupId>org.junit</groupId>
101 <artifactId>com.springsource.junit</artifactId>
102 <scope>test</scope>
103 </dependency>
104 </dependencies>
105
106
107 </project>