]> git.argeo.org Git - gpl/argeo-slc.git/blob - rcp/dep/pom.xml
Ignore MANIFEST.
[gpl/argeo-slc.git] / rcp / 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.slc.rcp</groupId>
8 <artifactId>argeo-rcp</artifactId>
9 <version>2.1.86-SNAPSHOT</version>
10 <relativePath>..</relativePath>
11 </parent>
12 <artifactId>dep</artifactId>
13 <name>RCP Base Dependencies</name>
14 <packaging>pom</packaging>
15 <modules>
16 <module>org.argeo.dep.cms.ui.rcp</module>
17 <module>org.argeo.dep.cms.e4.rcp</module>
18 </modules>
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>maven-bundle-plugin</artifactId>
24 <configuration>
25 <instructions>
26 <SLC-ModularDistribution>default</SLC-ModularDistribution>
27 </instructions>
28 </configuration>
29 </plugin>
30 <plugin>
31 <groupId>org.argeo.maven.plugins</groupId>
32 <artifactId>argeo-osgi-plugin</artifactId>
33 <executions>
34 <execution>
35 <id>generate-descriptors</id>
36 <goals>
37 <goal>descriptors</goal>
38 </goals>
39 <phase>generate-resources</phase>
40 </execution>
41 </executions>
42 </plugin>
43 <plugin>
44 <artifactId>maven-assembly-plugin</artifactId>
45 <configuration>
46 <attach>false</attach>
47 </configuration>
48 </plugin>
49 </plugins>
50 </build>
51 <dependencies>
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 <dependencies>
72 <dependency>
73 <groupId>org.argeo.commons</groupId>
74 <artifactId>org.argeo.osgi.boot</artifactId>
75 <version>${version.argeo-commons}</version>
76 <scope>test</scope>
77 </dependency>
78 </dependencies>
79 <build>
80 <plugins>
81 <plugin>
82 <groupId>org.argeo.maven.plugins</groupId>
83 <artifactId>argeo-osgi-plugin</artifactId>
84 <executions>
85 <execution>
86 <id>check-osgi</id>
87 <phase>test</phase>
88 <goals>
89 <goal>equinox</goal>
90 </goals>
91 <configuration>
92 <onlyCheck>true</onlyCheck>
93 </configuration>
94 </execution>
95 </executions>
96 </plugin>
97 </plugins>
98 </build>
99 </profile>
100 </profiles>
101 </project>