]> git.argeo.org Git - gpl/argeo-suite.git/blob - dep/pom.xml
Add RCP support
[gpl/argeo-suite.git] / 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.suite</groupId>
6 <artifactId>argeo-suite</artifactId>
7 <version>0.1.13-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>dep</artifactId>
11 <name>Argeo Suite Dependencies</name>
12 <packaging>pom</packaging>
13 <modules>
14 <module>org.argeo.suite.platform</module>
15 <module>org.argeo.suite.dep.e4.rap</module>
16 <module>org.argeo.suite.dep.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>maven-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 </plugins>
43 </build>
44 <dependencies>
45 <!-- SDK -->
46 <dependency>
47 <groupId>org.argeo.tp.equinox</groupId>
48 <artifactId>org.eclipse.osgi</artifactId>
49 <scope>test</scope>
50 </dependency>
51 <dependency>
52 <groupId>org.argeo.tp.sdk</groupId>
53 <artifactId>org.junit</artifactId>
54 <scope>test</scope>
55 </dependency>
56 </dependencies>
57 <profiles>
58 <profile>
59 <id>check-osgi</id>
60 <build>
61 <plugins>
62 <plugin>
63 <groupId>org.argeo.maven.plugins</groupId>
64 <artifactId>maven-argeo-osgi-plugin</artifactId>
65 <executions>
66 <execution>
67 <id>check-osgi</id>
68 <phase>test</phase>
69 <goals>
70 <goal>equinox</goal>
71 </goals>
72 <configuration>
73 <onlyCheck>true</onlyCheck>
74 </configuration>
75 </execution>
76 </executions>
77 </plugin>
78 </plugins>
79 </build>
80 <dependencies>
81 <!-- OSGi test -->
82 <dependency>
83 <groupId>org.argeo.commons</groupId>
84 <artifactId>org.argeo.osgi.boot</artifactId>
85 <version>${version.argeo-commons}</version>
86 <scope>test</scope>
87 </dependency>
88 </dependencies>
89 </profile>
90 </profiles>
91 </project>