]> git.argeo.org Git - lgpl/argeo-commons.git/blob - dep/pom.xml
Remove unused deps
[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.46-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.platform</module>
17 <module>org.argeo.dep.cms.sdk</module>
18 <!-- legacy -->
19 <!-- <module>org.argeo.security.dep.node</module> -->
20 <!-- <module>org.argeo.dep.cms</module> -->
21 <!-- <module>org.argeo.security.dep.node.rap</module> -->
22 </modules>
23 <build>
24 <plugins>
25 <plugin>
26 <groupId>org.apache.felix</groupId>
27 <artifactId>maven-bundle-plugin</artifactId>
28 <configuration>
29 <instructions>
30 <SLC-ModularDistribution>default</SLC-ModularDistribution>
31 </instructions>
32 </configuration>
33 </plugin>
34 <plugin>
35 <groupId>org.argeo.maven.plugins</groupId>
36 <artifactId>maven-argeo-osgi-plugin</artifactId>
37 <executions>
38 <execution>
39 <id>generate-descriptors</id>
40 <goals>
41 <goal>descriptors</goal>
42 </goals>
43 <phase>generate-resources</phase>
44 </execution>
45 </executions>
46 </plugin>
47 </plugins>
48 </build>
49 <profiles>
50 <profile>
51 <id>check-osgi</id>
52 <build>
53 <plugins>
54 <plugin>
55 <groupId>org.argeo.maven.plugins</groupId>
56 <artifactId>maven-argeo-osgi-plugin</artifactId>
57 <executions>
58 <execution>
59 <id>check-osgi</id>
60 <phase>test</phase>
61 <goals>
62 <goal>equinox</goal>
63 </goals>
64 <configuration>
65 <onlyCheck>true</onlyCheck>
66 </configuration>
67 </execution>
68 </executions>
69 </plugin>
70 </plugins>
71 </build>
72 <dependencies>
73 <dependency>
74 <groupId>org.argeo.commons</groupId>
75 <artifactId>org.argeo.osgi.boot</artifactId>
76 <version>2.1.46-SNAPSHOT</version>
77 <scope>test</scope>
78 </dependency>
79 </dependencies>
80 </profile>
81 </profiles>
82 </project>