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