]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/pom.xml
SLC JCR
[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 <plugin>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-bundle-plugin</artifactId>
43 </plugin>
44 </plugins>
45 <pluginManagement>
46 <plugins>
47 <plugin>
48 <groupId>org.argeo.maven.plugins</groupId>
49 <artifactId>maven-argeo-osgi-plugin</artifactId>
50 <executions>
51 <execution>
52 <id>resolve-pde-sources</id>
53 <goals>
54 <goal>pde-sources</goal>
55 </goals>
56 <phase>generate-resources</phase>
57 <configuration>
58 <copyArtifacts>false</copyArtifacts>
59 </configuration>
60 </execution>
61 <execution>
62 <id>generate-descriptors</id>
63 <goals>
64 <goal>descriptors</goal>
65 </goals>
66 <phase>generate-resources</phase>
67 </execution>
68 <execution>
69 <id>check-osgi</id>
70 <phase>test</phase>
71 <goals>
72 <goal>equinox</goal>
73 </goals>
74 <configuration>
75 <onlyCheck>true</onlyCheck>
76 <argsToAppend>
77 <arg>-clean</arg>
78 </argsToAppend>
79 </configuration>
80 </execution>
81 </executions>
82 </plugin>
83 </plugins>
84 </pluginManagement>
85 </build>
86 </project>