]> git.argeo.org Git - lgpl/argeo-commons.git/blob - dep/pom.xml
Site deployment
[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"
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.commons</groupId>
8 <artifactId>argeo-commons</artifactId>
9 <version>2.1.74-SNAPSHOT</version>
10 <relativePath>..</relativePath>
11 </parent>
12 <artifactId>dep</artifactId>
13 <name>Commons Modular Distributions</name>
14 <packaging>pom</packaging>
15 <modules>
16 <module>org.argeo.dep.cms.client</module>
17 <module>org.argeo.dep.cms.node</module>
18 <module>org.argeo.dep.cms.platform</module>
19 <module>org.argeo.dep.cms.e4.rap</module>
20 <module>org.argeo.dep.cms.sdk</module>
21 </modules>
22 <build>
23 <plugins>
24 <plugin>
25 <groupId>org.apache.felix</groupId>
26 <artifactId>maven-bundle-plugin</artifactId>
27 <configuration>
28 <instructions>
29 <SLC-ModularDistribution>default</SLC-ModularDistribution>
30 </instructions>
31 </configuration>
32 </plugin>
33 <plugin>
34 <groupId>org.argeo.maven.plugins</groupId>
35 <artifactId>maven-argeo-osgi-plugin</artifactId>
36 <executions>
37 <execution>
38 <id>generate-descriptors</id>
39 <goals>
40 <goal>descriptors</goal>
41 </goals>
42 <phase>generate-resources</phase>
43 </execution>
44 </executions>
45 </plugin>
46 <plugin>
47 <artifactId>maven-assembly-plugin</artifactId>
48 <dependencies>
49 <dependency>
50 <groupId>org.argeo.commons</groupId>
51 <artifactId>assembly-descriptors</artifactId>
52 <version>2.1.74-SNAPSHOT</version>
53 </dependency>
54 </dependencies>
55 <configuration>
56 <attach>false</attach>
57 </configuration>
58 </plugin>
59 </plugins>
60 </build>
61 <dependencies>
62 <dependency>
63 <groupId>org.argeo.tp.equinox</groupId>
64 <artifactId>org.eclipse.osgi</artifactId>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.argeo.tp.sdk</groupId>
69 <artifactId>org.junit</artifactId>
70 <scope>test</scope>
71 </dependency>
72 </dependencies>
73 <profiles>
74 <profile>
75 <id>check-osgi</id>
76 <build>
77 <plugins>
78 <plugin>
79 <groupId>org.argeo.maven.plugins</groupId>
80 <artifactId>maven-argeo-osgi-plugin</artifactId>
81 <executions>
82 <execution>
83 <id>check-osgi</id>
84 <phase>test</phase>
85 <goals>
86 <goal>equinox</goal>
87 </goals>
88 <configuration>
89 <onlyCheck>true</onlyCheck>
90 </configuration>
91 </execution>
92 </executions>
93 </plugin>
94 </plugins>
95 </build>
96 <dependencies>
97 <dependency>
98 <groupId>org.argeo.commons</groupId>
99 <artifactId>org.argeo.osgi.boot</artifactId>
100 <version>2.1.74-SNAPSHOT</version>
101 <scope>test</scope>
102 </dependency>
103 </dependencies>
104 </profile>
105 </profiles>
106 </project>