]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/pom.xml
Adapt to changes in Argeo Commons.
[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>2.1.17-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>dep</artifactId>
10 <name>SLC Dependencies</name>
11 <packaging>pom</packaging>
12 <modules>
13 <module>org.argeo.slc.dep.minimal</module>
14 <module>org.argeo.slc.dep.spring</module>
15 <module>org.argeo.slc.dep.e4.rap</module>
16 <module>org.argeo.slc.dep.spring.e4.rap</module>
17 <!-- Legacy -->
18 <module>org.argeo.slc.dep.backend</module>
19 </modules>
20 <build>
21 <plugins>
22 <plugin>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>maven-bundle-plugin</artifactId>
25 <configuration>
26 <instructions>
27 <SLC-ModularDistribution>default</SLC-ModularDistribution>
28 </instructions>
29 </configuration>
30 </plugin>
31 <plugin>
32 <groupId>org.argeo.maven.plugins</groupId>
33 <artifactId>argeo-osgi-plugin</artifactId>
34 <executions>
35 <execution>
36 <id>generate-descriptors</id>
37 <goals>
38 <goal>descriptors</goal>
39 </goals>
40 <phase>generate-resources</phase>
41 </execution>
42 </executions>
43 </plugin>
44 <plugin>
45 <artifactId>maven-assembly-plugin</artifactId>
46 <configuration>
47 <attach>false</attach>
48 </configuration>
49 </plugin>
50 </plugins>
51 </build>
52 <dependencies>
53 <dependency>
54 <groupId>org.argeo.tp.equinox</groupId>
55 <artifactId>org.eclipse.osgi</artifactId>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.argeo.tp.sdk</groupId>
60 <artifactId>org.junit</artifactId>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.argeo.tp.sdk</groupId>
65 <artifactId>org.hamcrest</artifactId>
66 <scope>test</scope>
67 </dependency>
68 </dependencies>
69 <profiles>
70 <profile>
71 <id>check-osgi</id>
72 <build>
73 <plugins>
74 <plugin>
75 <groupId>org.argeo.maven.plugins</groupId>
76 <artifactId>argeo-osgi-plugin</artifactId>
77 <executions>
78 <execution>
79 <id>check-osgi</id>
80 <phase>test</phase>
81 <goals>
82 <goal>equinox</goal>
83 </goals>
84 <configuration>
85 <onlyCheck>true</onlyCheck>
86 </configuration>
87 </execution>
88 </executions>
89 </plugin>
90 </plugins>
91 </build>
92 <dependencies>
93 <dependency>
94 <groupId>org.argeo.commons</groupId>
95 <artifactId>org.argeo.osgi.boot</artifactId>
96 <version>${version.argeo-commons}</version>
97 <scope>test</scope>
98 </dependency>
99 </dependencies>
100 </profile>
101 </profiles>
102 </project>