]> git.argeo.org Git - lgpl/argeo-commons.git/blob - rcp/dep/pom.xml
Improve CMS UI utilities.
[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.81-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.81-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 </dependencies>
67 <profiles>
68 <profile>
69 <id>check-osgi</id>
70 <dependencies>
71 <dependency>
72 <groupId>org.argeo.commons</groupId>
73 <artifactId>org.argeo.osgi.boot</artifactId>
74 <version>${version.argeo-commons}</version>
75 <scope>test</scope>
76 </dependency>
77 </dependencies>
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.argeo.maven.plugins</groupId>
82 <artifactId>argeo-osgi-plugin</artifactId>
83 <executions>
84 <execution>
85 <id>check-osgi</id>
86 <phase>test</phase>
87 <goals>
88 <goal>equinox</goal>
89 </goals>
90 <configuration>
91 <onlyCheck>true</onlyCheck>
92 </configuration>
93 </execution>
94 </executions>
95 </plugin>
96 </plugins>
97 </build>
98 </profile>
99 </profiles>
100 </project>