]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/pom.xml
add some comments to help understanding the approach
[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.gis</module>
18 <module>org.argeo.slc.dep.provided</module>
19 <module>org.argeo.slc.dep.backend</module>
20 <module>org.argeo.slc.dep.sdk.rcp</module>
21 <module>org.argeo.slc.dep.sdk.rap</module>
22 </modules>
23 <build>
24 <resources>
25 <resource>
26 <directory>.</directory>
27 <includes>
28 <include>*.inf</include>
29 </includes>
30 </resource>
31 </resources>
32 <plugins>
33 <plugin>
34 <groupId>org.codehaus.mojo</groupId>
35 <artifactId>buildnumber-maven-plugin</artifactId>
36 <configuration>
37 <useLastCommittedRevision>false</useLastCommittedRevision>
38 </configuration>
39 </plugin>
40 </plugins>
41 <pluginManagement>
42 <plugins>
43 <plugin>
44 <groupId>org.argeo.maven.plugins</groupId>
45 <artifactId>maven-argeo-osgi-plugin</artifactId>
46 <executions>
47 <execution>
48 <id>resolve-pde-sources</id>
49 <goals>
50 <goal>pde-sources</goal>
51 </goals>
52 <phase>generate-resources</phase>
53 <configuration>
54 <copyArtifacts>false</copyArtifacts>
55 </configuration>
56 </execution>
57 <execution>
58 <id>generate-descriptors</id>
59 <goals>
60 <goal>descriptors</goal>
61 </goals>
62 <phase>generate-resources</phase>
63 </execution>
64 <execution>
65 <id>check-osgi</id>
66 <phase>test</phase>
67 <goals>
68 <goal>equinox</goal>
69 </goals>
70 <configuration>
71 <onlyCheck>true</onlyCheck>
72 <argsToAppend>
73 <arg>-clean</arg>
74 </argsToAppend>
75 </configuration>
76 </execution>
77 </executions>
78 </plugin>
79 </plugins>
80 </pluginManagement>
81 </build>
82 </project>