]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/pom.xml
Introduce SLC SDK RPMs
[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"
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.12.2-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc</groupId>
11 <artifactId>dep</artifactId>
12 <packaging>pom</packaging>
13 <name>SLC Dependencies</name>
14 <modules>
15 <module>org.argeo.slc.dep.server</module>
16 <module>org.argeo.slc.dep.agent</module>
17 <module>org.argeo.slc.dep.detached</module>
18 <module>org.argeo.slc.dep.sdk</module>
19 </modules>
20 <build>
21 <resources>
22 <resource>
23 <directory>.</directory>
24 <includes>
25 <include>*.inf</include>
26 </includes>
27 </resource>
28 </resources>
29 <plugins>
30 <plugin>
31 <groupId>org.codehaus.mojo</groupId>
32 <artifactId>buildnumber-maven-plugin</artifactId>
33 <configuration>
34 <useLastCommittedRevision>false</useLastCommittedRevision>
35 </configuration>
36 </plugin>
37 <plugin>
38 <artifactId>maven-jar-plugin</artifactId>
39 <configuration>
40 <archive>
41 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
42 </archive>
43 </configuration>
44 </plugin>
45 <plugin>
46 <groupId>org.apache.felix</groupId>
47 <artifactId>maven-bundle-plugin</artifactId>
48 <version>${version.maven-bundle-plugin}</version>
49 <configuration>
50 <manifestLocation>META-INF</manifestLocation>
51 <instructions>
52 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
53 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
54 </instructions>
55 </configuration>
56 <executions>
57 <execution>
58 <id>bundle-manifest</id>
59 <phase>process-resources</phase>
60 <goals>
61 <goal>manifest</goal>
62 </goals>
63 </execution>
64 </executions>
65 </plugin>
66 <plugin>
67 <groupId>org.argeo.maven.plugins</groupId>
68 <artifactId>maven-argeo-osgi-plugin</artifactId>
69 <executions>
70 <execution>
71 <goals>
72 <goal>descriptors</goal>
73 </goals>
74 <phase>generate-resources</phase>
75 </execution>
76 </executions>
77 </plugin>
78 <plugin>
79 <groupId>org.codehaus.mojo</groupId>
80 <artifactId>build-helper-maven-plugin</artifactId>
81 <executions>
82 <execution>
83 <id>attach-artifacts</id>
84 <phase>package</phase>
85 <goals>
86 <goal>attach-artifact</goal>
87 </goals>
88 <configuration>
89 <artifacts>
90 <artifact>
91 <file>target/classes/modularDistribution.csv</file>
92 <type>csv</type>
93 <classifier>modularDistribution</classifier>
94 </artifact>
95 </artifacts>
96 </configuration>
97 </execution>
98 </executions>
99 </plugin>
100 </plugins>
101 </build>
102 </project>