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