]> git.argeo.org Git - gpl/argeo-suite.git/blob - dep/pom.xml
3ab1a19359623070f716bb51ad7cf73c2d49f608
[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"
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.suite</groupId>
8 <artifactId>argeo-suite</artifactId>
9 <version>2.3-SNAPSHOT</version>
10 <relativePath>..</relativePath>
11 </parent>
12 <artifactId>dep</artifactId>
13 <name>Argeo Suite Dependencies</name>
14 <packaging>pom</packaging>
15 <modules>
16 <module>org.argeo.suite.dep.ui.rap</module>
17 <module>org.argeo.suite.dep.e4.rap</module>
18 <!-- <module>org.argeo.suite.dep.e4.rcp</module> -->
19 </modules>
20 <build>
21 <plugins>
22 <plugin>
23 <groupId>org.codehaus.mojo</groupId>
24 <artifactId>properties-maven-plugin</artifactId>
25 <configuration>
26 <quiet>true</quiet>
27 <files>
28 <file>../../cnf/${version.context}.bnd</file>
29 </files>
30 </configuration>
31 </plugin>
32 <plugin>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>maven-bundle-plugin</artifactId>
35 <configuration>
36 <instructions>
37 <SLC-ModularDistribution>default</SLC-ModularDistribution>
38 </instructions>
39 </configuration>
40 </plugin>
41 <plugin>
42 <groupId>org.argeo.maven.plugins</groupId>
43 <artifactId>argeo-osgi-plugin</artifactId>
44 <executions>
45 <execution>
46 <id>generate-descriptors</id>
47 <goals>
48 <goal>descriptors</goal>
49 </goals>
50 <phase>generate-resources</phase>
51 </execution>
52 </executions>
53 </plugin>
54 <plugin>
55 <artifactId>maven-assembly-plugin</artifactId>
56 <configuration>
57 <attach>false</attach>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62 <dependencies>
63 <!-- SDK -->
64 <dependency>
65 <groupId>org.argeo.tp.equinox</groupId>
66 <artifactId>org.eclipse.osgi</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.argeo.tp.sdk</groupId>
71 <artifactId>org.junit</artifactId>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.argeo.tp.sdk</groupId>
76 <artifactId>org.hamcrest</artifactId>
77 <scope>test</scope>
78 </dependency>
79 </dependencies>
80 <profiles>
81 <profile>
82 <id>check-osgi</id>
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 <dependencies>
104 <!-- OSGi test -->
105 <dependency>
106 <groupId>org.argeo.commons</groupId>
107 <artifactId>org.argeo.osgi.boot</artifactId>
108 <version>${version.argeo-commons}</version>
109 <scope>test</scope>
110 </dependency>
111 </dependencies>
112 </profile>
113 </profiles>
114 </project>