]> git.argeo.org Git - gpl/argeo-slc.git/blob - legacy/dep/pom.xml
Deactivate Argeo Commons Legacy build
[gpl/argeo-slc.git] / legacy / 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>legacy</artifactId>
6 <version>2.3-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>legacy-dep</artifactId>
10 <name>SLC Legacy Dependencies</name>
11 <packaging>pom</packaging>
12 <modules>
13 <module>org.argeo.slc.dep.spring</module>
14 <module>org.argeo.slc.dep.backend</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.codehaus.mojo</groupId>
29 <artifactId>properties-maven-plugin</artifactId>
30 <configuration>
31 <quiet>true</quiet>
32 <files>
33 <file>../../../cnf/${version.context}.bnd</file>
34 </files>
35 </configuration>
36 </plugin>
37 <plugin>
38 <groupId>org.argeo.maven.plugins</groupId>
39 <artifactId>argeo-osgi-plugin</artifactId>
40 <executions>
41 <execution>
42 <id>generate-descriptors</id>
43 <goals>
44 <goal>descriptors</goal>
45 </goals>
46 <phase>generate-resources</phase>
47 </execution>
48 </executions>
49 </plugin>
50 <plugin>
51 <artifactId>maven-assembly-plugin</artifactId>
52 <configuration>
53 <attach>false</attach>
54 </configuration>
55 </plugin>
56 </plugins>
57 </build>
58 <dependencies>
59 <dependency>
60 <groupId>org.argeo.tp.equinox</groupId>
61 <artifactId>org.eclipse.osgi</artifactId>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.argeo.tp.sdk</groupId>
66 <artifactId>org.junit</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.argeo.tp.sdk</groupId>
71 <artifactId>org.hamcrest</artifactId>
72 <scope>test</scope>
73 </dependency>
74 </dependencies>
75 <profiles>
76 <profile>
77 <id>check-osgi</id>
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.argeo.maven.plugins</groupId>
82 <artifactId>argeo-osgi-plugin</artifactId>
83 <executions>
84 <execution>
85 <id>check-osgi</id>
86 <phase>test</phase>
87 <goals>
88 <goal>equinox</goal>
89 </goals>
90 <configuration>
91 <onlyCheck>true</onlyCheck>
92 </configuration>
93 </execution>
94 </executions>
95 </plugin>
96 </plugins>
97 </build>
98 <dependencies>
99 <dependency>
100 <groupId>org.argeo.commons</groupId>
101 <artifactId>org.argeo.osgi.boot</artifactId>
102 <version>${version.argeo-commons}</version>
103 <scope>test</scope>
104 </dependency>
105 </dependencies>
106 </profile>
107 </profiles>
108 </project>