]> git.argeo.org Git - gpl/argeo-slc.git/blob - rcp/dep/pom.xml
1e0e8edaf58972be74fd8a68275fb7dde0d51616
[gpl/argeo-slc.git] / rcp / dep / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <parent>
7 <groupId>org.argeo.slc.rcp</groupId>
8 <artifactId>argeo-rcp</artifactId>
9 <version>2.1.17-SNAPSHOT</version>
10 <relativePath>..</relativePath>
11 </parent>
12 <artifactId>dep</artifactId>
13 <name>RCP Base Dependencies</name>
14 <packaging>pom</packaging>
15 <modules>
16 <module>org.argeo.dep.cms.e4.rcp</module>
17 </modules>
18 <build>
19 <plugins>
20 <plugin>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>maven-bundle-plugin</artifactId>
23 <configuration>
24 <instructions>
25 <SLC-ModularDistribution>default</SLC-ModularDistribution>
26 </instructions>
27 </configuration>
28 </plugin>
29 <plugin>
30 <groupId>org.argeo.maven.plugins</groupId>
31 <artifactId>argeo-osgi-plugin</artifactId>
32 <executions>
33 <execution>
34 <id>generate-descriptors</id>
35 <goals>
36 <goal>descriptors</goal>
37 </goals>
38 <phase>generate-resources</phase>
39 </execution>
40 </executions>
41 </plugin>
42 <plugin>
43 <artifactId>maven-assembly-plugin</artifactId>
44 <dependencies>
45 <dependency>
46 <groupId>org.argeo.commons</groupId>
47 <artifactId>assembly-descriptors</artifactId>
48 <version>${version.argeo-commons}</version>
49 </dependency>
50 </dependencies>
51 <configuration>
52 <attach>false</attach>
53 </configuration>
54 </plugin>
55 </plugins>
56 </build>
57 <dependencies>
58 <dependency>
59 <groupId>org.argeo.tp.equinox</groupId>
60 <artifactId>org.eclipse.osgi</artifactId>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.argeo.tp.sdk</groupId>
65 <artifactId>org.junit</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.argeo.tp.sdk</groupId>
70 <artifactId>org.hamcrest</artifactId>
71 <scope>test</scope>
72 </dependency>
73 </dependencies>
74 <profiles>
75 <profile>
76 <id>check-osgi</id>
77 <dependencies>
78 <dependency>
79 <groupId>org.argeo.commons</groupId>
80 <artifactId>org.argeo.osgi.boot</artifactId>
81 <version>${version.argeo-commons}</version>
82 <scope>test</scope>
83 </dependency>
84 </dependencies>
85 <build>
86 <plugins>
87 <plugin>
88 <groupId>org.argeo.maven.plugins</groupId>
89 <artifactId>argeo-osgi-plugin</artifactId>
90 <executions>
91 <execution>
92 <id>check-osgi</id>
93 <phase>test</phase>
94 <goals>
95 <goal>equinox</goal>
96 </goals>
97 <configuration>
98 <onlyCheck>true</onlyCheck>
99 </configuration>
100 </execution>
101 </executions>
102 </plugin>
103 </plugins>
104 </build>
105 </profile>
106 </profiles>
107 </project>