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