]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/org.argeo.slc.dep.minimal/pom.xml
[maven-release-plugin] copy for tag argeo-slc-1.1.8
[gpl/argeo-slc.git] / dep / org.argeo.slc.dep.minimal / 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>dep</artifactId>
6 <version>1.1.8</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.dep.minimal</artifactId>
10 <name>SLC Minimal Dependencies</name>
11 <description>The minimal set of dependencies required to run an SLC execution</description>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.argeo.maven.plugins</groupId>
16 <artifactId>maven-argeo-osgi-plugin</artifactId>
17 <executions>
18 <execution>
19 <id>generate-descriptors</id>
20 <goals>
21 <goal>descriptors</goal>
22 </goals>
23 <phase>generate-resources</phase>
24 </execution>
25 </executions>
26 </plugin>
27 </plugins>
28 </build>
29 <dependencies>
30 <dependency>
31 <groupId>org.argeo.slc</groupId>
32 <artifactId>org.argeo.slc.launcher</artifactId>
33 <version>1.1.8</version>
34 </dependency>
35
36 <dependency>
37 <groupId>org.argeo.slc</groupId>
38 <artifactId>org.argeo.slc.support.jcr</artifactId>
39 <version>1.1.8</version>
40 </dependency>
41 <dependency>
42 <groupId>org.argeo.slc</groupId>
43 <artifactId>org.argeo.slc.agent.jcr</artifactId>
44 <version>1.1.8</version>
45 </dependency>
46 <dependency>
47 <groupId>org.argeo.slc</groupId>
48 <artifactId>org.argeo.slc.node.jackrabbit</artifactId>
49 <version>1.1.8</version>
50 </dependency>
51
52
53 <!-- Node subset -->
54 <!-- Default JCR repositories configurations -->
55 <dependency>
56 <groupId>org.argeo.commons.server</groupId>
57 <artifactId>org.argeo.node.repo.jackrabbit</artifactId>
58 <version>${version.argeo-commons}</version>
59 </dependency>
60
61 <!-- Argeo Security -->
62 <dependency>
63 <groupId>org.argeo.commons.security</groupId>
64 <artifactId>org.argeo.security.core</artifactId>
65 <version>${version.argeo-commons}</version>
66 </dependency>
67
68 <!-- Xerces and Xalan -->
69 <dependency>
70 <groupId>org.argeo.tp</groupId>
71 <artifactId>org.apache.xmlcommons</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.argeo.tp</groupId>
75 <artifactId>org.apache.xalan</artifactId>
76 </dependency>
77
78 <!-- Javax -->
79 <dependency>
80 <groupId>org.argeo.tp</groupId>
81 <artifactId>javax.annotation</artifactId>
82 </dependency>
83
84 <!-- Jackrabbit -->
85 <dependency>
86 <groupId>org.argeo.commons.server</groupId>
87 <artifactId>org.argeo.server.jackrabbit</artifactId>
88 <version>${version.argeo-commons}</version>
89 </dependency>
90 <dependency>
91 <groupId>org.argeo.commons.security</groupId>
92 <artifactId>org.argeo.security.jackrabbit</artifactId>
93 <version>${version.argeo-commons}</version>
94 </dependency>
95
96 <!-- Security (Jackrabbit) -->
97 <dependency>
98 <groupId>org.argeo.commons.security</groupId>
99 <artifactId>org.argeo.security.dao.jackrabbit</artifactId>
100 <version>${version.argeo-commons}</version>
101 </dependency>
102
103 <!-- Security (Standalone) -->
104 <dependency>
105 <groupId>org.argeo.commons.security</groupId>
106 <artifactId>org.argeo.security.dao.os</artifactId>
107 <version>${version.argeo-commons}</version>
108 </dependency>
109
110 <!-- DB drivers -->
111 <dependency>
112 <groupId>org.argeo.tp</groupId>
113 <artifactId>org.h2</artifactId>
114 </dependency>
115 </dependencies>
116 <profiles>
117 <profile>
118 <id>check-osgi</id>
119 <build>
120 <plugins>
121 <plugin>
122 <groupId>org.argeo.maven.plugins</groupId>
123 <artifactId>maven-argeo-osgi-plugin</artifactId>
124 <executions>
125 <execution>
126 <id>check-osgi</id>
127 <phase>test</phase>
128 <goals>
129 <goal>equinox</goal>
130 </goals>
131 <configuration>
132 <onlyCheck>true</onlyCheck>
133 </configuration>
134 </execution>
135 </executions>
136 </plugin>
137 </plugins>
138 </build>
139 </profile>
140 </profiles>
141 </project>