]> git.argeo.org Git - lgpl/argeo-commons.git/blob - dep/pom.xml
Deploy Java 11.
[lgpl/argeo-commons.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.commons</groupId>
6 <artifactId>argeo-commons</artifactId>
7 <version>2.1.89-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>dep</artifactId>
11 <name>Commons Modular Distributions</name>
12 <packaging>pom</packaging>
13 <modules>
14 <module>org.argeo.dep.cms.client</module>
15 <module>org.argeo.dep.cms.node</module>
16 <module>org.argeo.dep.cms.e4.rap</module>
17 <module>org.argeo.dep.cms.sdk</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 <dependencies>
46 <dependency>
47 <groupId>org.argeo.commons</groupId>
48 <artifactId>assembly-descriptors</artifactId>
49 <version>2.1.86-SNAPSHOT</version>
50 </dependency>
51 </dependencies>
52 <configuration>
53 <attach>false</attach>
54 </configuration>
55 </plugin>
56 </plugins>
57 </build>
58 <dependencies>
59 <dependency>
60 <groupId>org.argeo.tp.equinox</groupId>
61 <artifactId>org.eclipse.osgi</artifactId>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.argeo.tp.sdk</groupId>
66 <artifactId>org.junit</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.argeo.tp.sdk</groupId>
71 <artifactId>org.hamcrest</artifactId>
72 <scope>test</scope>
73 </dependency>
74 </dependencies>
75 <profiles>
76 <profile>
77 <id>check-osgi</id>
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.argeo.maven.plugins</groupId>
82 <artifactId>argeo-osgi-plugin</artifactId>
83 <executions>
84 <execution>
85 <id>check-osgi</id>
86 <phase>test</phase>
87 <goals>
88 <goal>equinox</goal>
89 </goals>
90 <configuration>
91 <onlyCheck>true</onlyCheck>
92 </configuration>
93 </execution>
94 </executions>
95 </plugin>
96 </plugins>
97 </build>
98 <dependencies>
99 <dependency>
100 <groupId>org.argeo.commons</groupId>
101 <artifactId>org.argeo.osgi.boot</artifactId>
102 <version>2.1.89-SNAPSHOT</version>
103 <scope>test</scope>
104 </dependency>
105 </dependencies>
106 </profile>
107 </profiles>
108 </project>