]> git.argeo.org Git - gpl/argeo-suite.git/blob - dep/pom.xml
44586f695667edea5796980c0cd1154f02e2227f
[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>2.1.18-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.dep.ui.rap</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>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 <configuration>
45 <attach>false</attach>
46 </configuration>
47 </plugin>
48 </plugins>
49 </build>
50 <dependencies>
51 <!-- SDK -->
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 <!-- OSGi test -->
93 <dependency>
94 <groupId>org.argeo.commons</groupId>
95 <artifactId>org.argeo.osgi.boot</artifactId>
96 <version>${version.argeo-commons}</version>
97 <scope>test</scope>
98 </dependency>
99 </dependencies>
100 </profile>
101 </profiles>
102 </project>