]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/pom.xml
Improve system calls
[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.13.1-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>dep</artifactId>
11 <name>SLC Dependencies</name>
12 <packaging>pom</packaging>
13 <modules>
14 <module>org.argeo.slc.dep.agent</module>
15 <module>org.argeo.slc.dep.server</module>
16 <module>org.argeo.slc.dep.detached</module>
17 <module>org.argeo.slc.dep.backend</module>
18 <module>org.argeo.slc.dep.sdk.rcp</module>
19 <module>org.argeo.slc.dep.sdk.rap</module>
20 </modules>
21 <build>
22 <resources>
23 <resource>
24 <directory>.</directory>
25 <includes>
26 <include>*.inf</include>
27 </includes>
28 </resource>
29 </resources>
30 <plugins>
31 <plugin>
32 <groupId>org.codehaus.mojo</groupId>
33 <artifactId>buildnumber-maven-plugin</artifactId>
34 <configuration>
35 <useLastCommittedRevision>false</useLastCommittedRevision>
36 </configuration>
37 </plugin>
38 <plugin>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>maven-bundle-plugin</artifactId>
41 </plugin>
42 </plugins>
43 <pluginManagement>
44 <plugins>
45 <plugin>
46 <groupId>org.argeo.maven.plugins</groupId>
47 <artifactId>maven-argeo-osgi-plugin</artifactId>
48 <executions>
49 <execution>
50 <id>resolve-pde-sources</id>
51 <goals>
52 <goal>pde-sources</goal>
53 </goals>
54 <phase>generate-resources</phase>
55 <configuration>
56 <copyArtifacts>false</copyArtifacts>
57 </configuration>
58 </execution>
59 <execution>
60 <id>generate-descriptors</id>
61 <goals>
62 <goal>descriptors</goal>
63 </goals>
64 <phase>generate-resources</phase>
65 </execution>
66 <execution>
67 <id>check-osgi</id>
68 <phase>test</phase>
69 <goals>
70 <goal>equinox</goal>
71 </goals>
72 <configuration>
73 <onlyCheck>true</onlyCheck>
74 <argsToAppend>
75 <arg>-clean</arg>
76 </argsToAppend>
77 </configuration>
78 </execution>
79 </executions>
80 </plugin>
81 </plugins>
82 </pluginManagement>
83 </build>
84 </project>