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