]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/pom.xml
[maven-release-plugin] copy for tag argeo-slc-0.11.4
[gpl/argeo-slc.git] / dep / 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>argeo-slc</artifactId>
6 <version>0.11.4</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc</groupId>
10 <artifactId>dep</artifactId>
11 <packaging>pom</packaging>
12 <name>SLC Dependencies</name>
13 <modules>
14 <module>org.argeo.slc.dep.server</module>
15 <module>org.argeo.slc.dep.agent</module>
16 <module>org.argeo.slc.dep.detached</module>
17 </modules>
18 <build>
19 <resources>
20 <resource>
21 <directory>.</directory>
22 <includes>
23 <include>META-INF/MANIFEST.MF</include>
24 </includes>
25 </resource>
26 </resources>
27 <plugins>
28 <plugin>
29 <groupId>org.codehaus.mojo</groupId>
30 <artifactId>buildnumber-maven-plugin</artifactId>
31 <configuration>
32 <useLastCommittedRevision>false</useLastCommittedRevision>
33 </configuration>
34 </plugin>
35 <plugin>
36 <artifactId>maven-jar-plugin</artifactId>
37 <configuration>
38 <archive>
39 <manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
40 </archive>
41 </configuration>
42 </plugin>
43 <plugin>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>maven-bundle-plugin</artifactId>
46 <version>${version.maven-bundle-plugin}</version>
47 <configuration>
48 <instructions>
49 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
50 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
51 </instructions>
52 </configuration>
53 </plugin>
54 <plugin>
55 <groupId>org.argeo.maven.plugins</groupId>
56 <artifactId>maven-argeo-osgi-plugin</artifactId>
57 <executions>
58 <execution>
59 <goals>
60 <goal>descriptors</goal>
61 </goals>
62 <phase>generate-resources</phase>
63 </execution>
64 </executions>
65 </plugin>
66 </plugins>
67 </build>
68 </project>