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