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