]> git.argeo.org Git - lgpl/argeo-commons.git/blob - dep/pom.xml
Major refactoring of Argeo CMS UI
[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.3-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.minimal</module>
15 <module>org.argeo.dep.cms.node</module>
16 <module>org.argeo.dep.cms.ui.rap</module>
17 <module>org.argeo.dep.cms.e4.rap</module>
18 <module>org.argeo.dep.cms.ext</module>
19 </modules>
20 <build>
21 <plugins>
22 <plugin>
23 <groupId>org.codehaus.mojo</groupId>
24 <artifactId>properties-maven-plugin</artifactId>
25 <configuration>
26 <quiet>true</quiet>
27 <files>
28 <file>../../cnf/${version.context}.bnd</file>
29 </files>
30 </configuration>
31 </plugin>
32 <plugin>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>maven-bundle-plugin</artifactId>
35 <configuration>
36 <instructions>
37 <SLC-ModularDistribution>default</SLC-ModularDistribution>
38 </instructions>
39 </configuration>
40 </plugin>
41 <plugin>
42 <groupId>org.argeo.maven.plugins</groupId>
43 <artifactId>argeo-osgi-plugin</artifactId>
44 <executions>
45 <execution>
46 <id>generate-descriptors</id>
47 <goals>
48 <goal>descriptors</goal>
49 </goals>
50 <phase>generate-resources</phase>
51 </execution>
52 </executions>
53 </plugin>
54 <plugin>
55 <artifactId>maven-assembly-plugin</artifactId>
56 <configuration>
57 <attach>false</attach>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62 <dependencies>
63 <dependency>
64 <groupId>org.argeo.tp.equinox</groupId>
65 <artifactId>org.eclipse.osgi</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.argeo.tp.sdk</groupId>
70 <artifactId>org.junit</artifactId>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.argeo.tp.sdk</groupId>
75 <artifactId>org.hamcrest</artifactId>
76 <scope>test</scope>
77 </dependency>
78 </dependencies>
79 <profiles>
80 <profile>
81 <id>a2-target</id>
82 <build>
83 <plugins>
84 <plugin>
85 <artifactId>maven-assembly-plugin</artifactId>
86 <configuration>
87 <descriptorRefs>
88 <descriptorRef>a2-target</descriptorRef>
89 </descriptorRefs>
90 </configuration>
91 </plugin>
92 </plugins>
93 </build>
94 </profile>
95 <profile>
96 <id>check-osgi</id>
97 <build>
98 <plugins>
99 <plugin>
100 <groupId>org.argeo.maven.plugins</groupId>
101 <artifactId>argeo-osgi-plugin</artifactId>
102 <executions>
103 <execution>
104 <id>check-osgi</id>
105 <phase>test</phase>
106 <goals>
107 <goal>equinox</goal>
108 </goals>
109 <configuration>
110 <onlyCheck>true</onlyCheck>
111 </configuration>
112 </execution>
113 </executions>
114 </plugin>
115 </plugins>
116 </build>
117 <dependencies>
118 <dependency>
119 <groupId>org.argeo.commons</groupId>
120 <artifactId>org.argeo.osgi.boot</artifactId>
121 <version>2.3-SNAPSHOT</version>
122 <scope>test</scope>
123 </dependency>
124 </dependencies>
125 </profile>
126 </profiles>
127 </project>