]> git.argeo.org Git - gpl/argeo-slc.git/blob - legacy/argeo-commons/dep/pom.xml
Make SLC v1 compatible with Java 11.
[gpl/argeo-slc.git] / legacy / argeo-commons / 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.legacy.commons</groupId>
8 <artifactId>argeo-commons-legacy</artifactId>
9 <version>2.1.86-SNAPSHOT</version>
10 <relativePath>..</relativePath>
11 </parent>
12 <artifactId>legacy-dep</artifactId>
13 <name>Commons Modular Distributions (Legacy)</name>
14 <packaging>pom</packaging>
15 <modules>
16 <module>org.argeo.dep.cms.platform</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 <dependencies>
45 <dependency>
46 <groupId>org.argeo.commons</groupId>
47 <artifactId>assembly-descriptors</artifactId>
48 <version>${version.argeo-commons}</version>
49 </dependency>
50 </dependencies>
51 <configuration>
52 <attach>false</attach>
53 </configuration>
54 </plugin>
55 </plugins>
56 </build>
57 <dependencies>
58 <dependency>
59 <groupId>org.argeo.tp.equinox</groupId>
60 <artifactId>org.eclipse.osgi</artifactId>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.argeo.tp.sdk</groupId>
65 <artifactId>org.junit</artifactId>
66 <scope>test</scope>
67 </dependency>
68 </dependencies>
69 <profiles>
70 <profile>
71 <id>check-osgi</id>
72 <build>
73 <plugins>
74 <plugin>
75 <groupId>org.argeo.maven.plugins</groupId>
76 <artifactId>argeo-osgi-plugin</artifactId>
77 <executions>
78 <execution>
79 <id>check-osgi</id>
80 <phase>test</phase>
81 <goals>
82 <goal>equinox</goal>
83 </goals>
84 <configuration>
85 <onlyCheck>true</onlyCheck>
86 </configuration>
87 </execution>
88 </executions>
89 </plugin>
90 </plugins>
91 </build>
92 <dependencies>
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>