]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/pom.xml
Add dependencies for unit tests
[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.12.2-SNAPSHOT</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>*.inf</include>
24 <include>META-INF/MANIFEST.MF</include>
25 </includes>
26 </resource>
27 </resources>
28 <plugins>
29 <plugin>
30 <groupId>org.codehaus.mojo</groupId>
31 <artifactId>buildnumber-maven-plugin</artifactId>
32 <configuration>
33 <useLastCommittedRevision>false</useLastCommittedRevision>
34 </configuration>
35 </plugin>
36 <plugin>
37 <artifactId>maven-jar-plugin</artifactId>
38 <configuration>
39 <archive>
40 <manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
41 </archive>
42 </configuration>
43 </plugin>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
47 <version>${version.maven-bundle-plugin}</version>
48 <configuration>
49 <instructions>
50 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
51 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
52 </instructions>
53 </configuration>
54 </plugin>
55 <plugin>
56 <groupId>org.argeo.maven.plugins</groupId>
57 <artifactId>maven-argeo-osgi-plugin</artifactId>
58 <executions>
59 <execution>
60 <goals>
61 <goal>descriptors</goal>
62 </goals>
63 <phase>generate-resources</phase>
64 </execution>
65 </executions>
66 </plugin>
67 <plugin>
68 <groupId>org.codehaus.mojo</groupId>
69 <artifactId>build-helper-maven-plugin</artifactId>
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>target/classes/modularDistribution.csv</file>
81 <type>csv</type>
82 <classifier>modularDistribution</classifier>
83 </artifact>
84 </artifacts>
85 </configuration>
86 </execution>
87 </executions>
88 </plugin>
89 </plugins>
90 </build>
91 </project>