]> git.argeo.org Git - lgpl/argeo-commons.git/blob - dep/pom.xml
Prepare CurrentUser refactoring
[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.50-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 </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>maven-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 </plugins>
44 </build>
45 <dependencies>
46 <dependency>
47 <groupId>org.argeo.tp.equinox</groupId>
48 <artifactId>org.eclipse.osgi</artifactId>
49 <scope>test</scope>
50 </dependency>
51 </dependencies>
52 <profiles>
53 <profile>
54 <id>check-osgi</id>
55 <build>
56 <plugins>
57 <plugin>
58 <groupId>org.argeo.maven.plugins</groupId>
59 <artifactId>maven-argeo-osgi-plugin</artifactId>
60 <executions>
61 <execution>
62 <id>check-osgi</id>
63 <phase>test</phase>
64 <goals>
65 <goal>equinox</goal>
66 </goals>
67 <configuration>
68 <onlyCheck>true</onlyCheck>
69 </configuration>
70 </execution>
71 </executions>
72 </plugin>
73 </plugins>
74 </build>
75 <dependencies>
76 <dependency>
77 <groupId>org.argeo.commons</groupId>
78 <artifactId>org.argeo.osgi.boot</artifactId>
79 <version>2.1.50-SNAPSHOT</version>
80 <scope>test</scope>
81 </dependency>
82 </dependencies>
83 </profile>
84 </profiles>
85 </project>