]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
80040b769bca0651f98213e2c849481a111eaf64
[gpl/argeo-slc.git] / 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.slc.rcp</groupId>
6 <artifactId>argeo-rcp</artifactId>
7 <version>2.1.17</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.ui.rcp</module>
15 <module>org.argeo.dep.cms.e4.rcp</module>
16 </modules>
17 <build>
18 <plugins>
19 <plugin>
20 <groupId>org.apache.felix</groupId>
21 <artifactId>maven-bundle-plugin</artifactId>
22 <configuration>
23 <instructions>
24 <SLC-ModularDistribution>default</SLC-ModularDistribution>
25 </instructions>
26 </configuration>
27 </plugin>
28 <plugin>
29 <groupId>org.argeo.maven.plugins</groupId>
30 <artifactId>argeo-osgi-plugin</artifactId>
31 <executions>
32 <execution>
33 <id>generate-descriptors</id>
34 <goals>
35 <goal>descriptors</goal>
36 </goals>
37 <phase>generate-resources</phase>
38 </execution>
39 </executions>
40 </plugin>
41 <plugin>
42 <artifactId>maven-assembly-plugin</artifactId>
43 <configuration>
44 <attach>false</attach>
45 </configuration>
46 </plugin>
47 </plugins>
48 </build>
49 <dependencies>
50 <dependency>
51 <groupId>org.argeo.tp.equinox</groupId>
52 <artifactId>org.eclipse.osgi</artifactId>
53 <scope>test</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.argeo.tp.sdk</groupId>
57 <artifactId>org.junit</artifactId>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.argeo.tp.sdk</groupId>
62 <artifactId>org.hamcrest</artifactId>
63 <scope>test</scope>
64 </dependency>
65 </dependencies>
66 <profiles>
67 <profile>
68 <id>check-osgi</id>
69 <dependencies>
70 <dependency>
71 <groupId>org.argeo.commons</groupId>
72 <artifactId>org.argeo.osgi.boot</artifactId>
73 <version>${version.argeo-commons}</version>
74 <scope>test</scope>
75 </dependency>
76 </dependencies>
77 <build>
78 <plugins>
79 <plugin>
80 <groupId>org.argeo.maven.plugins</groupId>
81 <artifactId>argeo-osgi-plugin</artifactId>
82 <executions>
83 <execution>
84 <id>check-osgi</id>
85 <phase>test</phase>
86 <goals>
87 <goal>equinox</goal>
88 </goals>
89 <configuration>
90 <onlyCheck>true</onlyCheck>
91 </configuration>
92 </execution>
93 </executions>
94 </plugin>
95 </plugins>
96 </build>
97 </profile>
98 </profiles>
99 </project>