]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/org.argeo.slc.dep.backend/pom.xml
Generate MANIFESTs
[gpl/argeo-slc.git] / dep / org.argeo.slc.dep.backend / 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.3-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9
10 <groupId>org.argeo.slc.dep</groupId>
11 <artifactId>org.argeo.slc.dep.backend</artifactId>
12 <name>SLC Backend Dependencies</name>
13 <description>Shared by RAP and pure server</description>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.argeo.maven.plugins</groupId>
18 <artifactId>maven-argeo-osgi-plugin</artifactId>
19 <executions>
20 <execution>
21 <id>generate-descriptors</id>
22 <goals>
23 <goal>descriptors</goal>
24 </goals>
25 <phase>generate-resources</phase>
26 </execution>
27 </executions>
28 </plugin>
29 </plugins>
30 </build>
31 <dependencies>
32 <!-- SLC Agent -->
33 <dependency>
34 <groupId>org.argeo.slc.runtime</groupId>
35 <artifactId>org.argeo.slc.core</artifactId>
36 <version>1.1.3-SNAPSHOT</version>
37 </dependency>
38 <dependency>
39 <groupId>org.argeo.slc.runtime</groupId>
40 <artifactId>org.argeo.slc.support.simple</artifactId>
41 <version>1.1.3-SNAPSHOT</version>
42 </dependency>
43 <dependency>
44 <groupId>org.argeo.slc.runtime</groupId>
45 <artifactId>org.argeo.slc.support.ant</artifactId>
46 <version>1.1.3-SNAPSHOT</version>
47 </dependency>
48 <dependency>
49 <groupId>org.argeo.slc.runtime</groupId>
50 <artifactId>org.argeo.slc.support.jcr</artifactId>
51 <version>1.1.3-SNAPSHOT</version>
52 </dependency>
53 <dependency>
54 <groupId>org.argeo.slc.runtime</groupId>
55 <artifactId>org.argeo.slc.support.equinox</artifactId>
56 <version>1.1.3-SNAPSHOT</version>
57 </dependency>
58
59 <!-- SLC Agent Modules -->
60 <dependency>
61 <groupId>org.argeo.slc</groupId>
62 <artifactId>org.argeo.slc.agent</artifactId>
63 <version>1.1.3-SNAPSHOT</version>
64 </dependency>
65 <dependency>
66 <groupId>org.argeo.slc</groupId>
67 <artifactId>org.argeo.slc.agent.jcr</artifactId>
68 <version>1.1.3-SNAPSHOT</version>
69 </dependency>
70 <dependency>
71 <groupId>org.argeo.slc</groupId>
72 <artifactId>org.argeo.slc.node.jackrabbit</artifactId>
73 <version>1.1.3-SNAPSHOT</version>
74 </dependency>
75
76 <!-- SLC Repo -->
77 <dependency>
78 <groupId>org.argeo.slc.runtime</groupId>
79 <artifactId>org.argeo.slc.repo</artifactId>
80 <version>1.1.3-SNAPSHOT</version>
81 </dependency>
82 <dependency>
83 <groupId>org.argeo.slc</groupId>
84 <artifactId>org.argeo.slc.server.repo</artifactId>
85 <version>1.1.3-SNAPSHOT</version>
86 </dependency>
87 <dependency>
88 <groupId>org.argeo.slc</groupId>
89 <artifactId>org.argeo.slc.server.repo.webapp</artifactId>
90 <version>1.1.3-SNAPSHOT</version>
91 </dependency>
92
93 <!-- Launcher -->
94 <dependency>
95 <groupId>org.argeo.slc.runtime</groupId>
96 <artifactId>org.argeo.slc.launcher</artifactId>
97 <version>1.1.3-SNAPSHOT</version>
98 <type>tar.gz</type>
99 <classifier>base</classifier>
100 </dependency>
101
102 <!-- Node -->
103 <dependency>
104 <groupId>org.argeo.commons.security</groupId>
105 <artifactId>org.argeo.security.dep.node</artifactId>
106 <version>${version.argeo-commons}</version>
107 <type>pom</type>
108 </dependency>
109 </dependencies>
110 <profiles>
111 <profile>
112 <id>check-osgi</id>
113 <build>
114 <plugins>
115 <plugin>
116 <groupId>org.argeo.maven.plugins</groupId>
117 <artifactId>maven-argeo-osgi-plugin</artifactId>
118 <executions>
119 <execution>
120 <id>check-osgi</id>
121 <phase>test</phase>
122 <goals>
123 <goal>equinox</goal>
124 </goals>
125 <configuration>
126 <onlyCheck>true</onlyCheck>
127 </configuration>
128 </execution>
129 </executions>
130 </plugin>
131 </plugins>
132 </build>
133 </profile>
134 <profile>
135 <id>rpmbuild</id>
136 <build>
137 <plugins>
138 <plugin>
139 <groupId>org.apache.maven.plugins</groupId>
140 <artifactId>maven-dependency-plugin</artifactId>
141 <executions>
142 <execution>
143 <id>copy-dependencies</id>
144 <phase>process-resources</phase>
145 <goals>
146 <goal>copy-dependencies</goal>
147 </goals>
148 <configuration>
149 <includeTypes>jar</includeTypes>
150 <includeGroupIds>org.argeo.slc.modules,org.argeo.slc.runtime</includeGroupIds>
151 <outputDirectory>${project.build.directory}/slc</outputDirectory>
152 </configuration>
153 </execution>
154 </executions>
155 </plugin>
156 <plugin>
157 <groupId>org.codehaus.mojo</groupId>
158 <artifactId>rpm-maven-plugin</artifactId>
159 <executions>
160 <execution>
161 <id>rpm-slc</id>
162 <phase>package</phase>
163 <goals>
164 <goal>rpm</goal>
165 </goals>
166 <configuration>
167 <name>slc-libs</name>
168 <copyright>2011 Argeo</copyright>
169 <mappings>
170 <mapping>
171 <directory>/usr/share/osgi</directory>
172 <username>root</username>
173 <groupname>root</groupname>
174 <filemode>644</filemode>
175 <directoryIncluded>false</directoryIncluded>
176 <sources>
177 <source>
178 <location>${project.build.directory}/slc</location>
179 </source>
180 </sources>
181 </mapping>
182 </mappings>
183 <requires>
184 <require>slc-tp</require>
185 <require>argeo-node</require>
186 </requires>
187 </configuration>
188 </execution>
189 </executions>
190 </plugin>
191 </plugins>
192 </build>
193 </profile>
194 <profile>
195 <id>rpmbuild-tp</id>
196 <build>
197 <plugins>
198 <plugin>
199 <groupId>org.codehaus.mojo</groupId>
200 <artifactId>rpm-maven-plugin</artifactId>
201 <executions>
202 <execution>
203 <id>rpm-tp</id>
204 <phase>package</phase>
205 <goals>
206 <goal>rpm</goal>
207 </goals>
208 <configuration>
209 <name>slc-tp</name>
210 <projversion>${version.argeo-distribution}</projversion>
211 <mappings>
212 <mapping>
213 <directory>/usr/share/osgi</directory>
214 <username>root</username>
215 <groupname>root</groupname>
216 <filemode>644</filemode>
217 <directoryIncluded>false</directoryIncluded>
218 <dependency>
219 <includes>
220 <!-- Core -->
221 <include>org.argeo.tp:org.aspectj.runtime</include>
222 <include>org.argeo.tp:org.aspectj.weaver</include>
223 <!-- Simple -->
224 <include>org.argeo.tp:com.jcraft.jsch</include>
225 <include>org.argeo.tp:org.quartz</include>
226 <include>org.argeo.tp:org.springframework.context.support</include>
227 <include>org.argeo.tp:javax.mail</include>
228 <include>org.argeo.tp:org.tmatesoft.svn</include>
229 <include>org.argeo.tp:org.redline_rpm</include>
230 <!-- Ant -->
231 <include>org.argeo.tp:org.apache.tools.ant</include>
232 <include>org.argeo.tp:org.apache.tools.ant.launch</include>
233 <include>org.argeo.tp:org.apache.oro</include>
234 <include>org.argeo.tp:org.apache.bsf</include>
235 <!-- Maven -->
236 <include>org.argeo.tp:org.sonatype.aether</include>
237 <!-- Misc -->
238 <include>org.argeo.tp:jxl</include>
239 </includes>
240 </dependency>
241 </mapping>
242 </mappings>
243 <requires>
244 <require>argeo-node-tp</require>
245 </requires>
246 </configuration>
247 </execution>
248 </executions>
249 </plugin>
250 </plugins>
251 </build>
252 </profile>
253 </profiles>
254 </project>