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