]> git.argeo.org Git - gpl/argeo-slc.git/blob - slc-maven/pom.xml
Prepare next development cycle
[gpl/argeo-slc.git] / slc-maven / 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>dist</artifactId>
6 <version>2.1.9</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>slc-maven</artifactId>
10 <packaging>pom</packaging>
11 <name>SLC Distribution Maven</name>
12 <dependencies>
13 <dependency>
14 <groupId>org.argeo.slc</groupId>
15 <artifactId>org.argeo.slc.support.maven</artifactId>
16 <version>2.1.9</version>
17 </dependency>
18 <dependency>
19 <groupId>org.argeo.slc</groupId>
20 <artifactId>org.argeo.slc.lib.build</artifactId>
21 <version>2.1.9</version>
22 </dependency>
23 </dependencies>
24 <profiles>
25 <profile>
26 <id>rpmbuild</id>
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.codehaus.mojo</groupId>
31 <artifactId>rpm-maven-plugin</artifactId>
32 <executions>
33 <execution>
34 <id>rpm-slc-maven</id>
35 <phase>package</phase>
36 <goals>
37 <goal>rpm</goal>
38 </goals>
39 <configuration>
40 <name>slc-maven</name>
41 <copyright>2011 Argeo</copyright>
42 <mappings>
43 <mapping>
44 <directory>/usr/share/osgi</directory>
45 <username>root</username>
46 <groupname>root</groupname>
47 <filemode>644</filemode>
48 <directoryIncluded>false</directoryIncluded>
49 <dependency>
50 <includes>
51 <include>org.argeo.slc:org.argeo.slc.support.maven</include>
52 <include>org.argeo.slc:org.argeo.slc.lib.build</include>
53 </includes>
54 </dependency>
55 </mapping>
56 </mappings>
57 <requires>
58 <require>slc-platform</require>
59 </requires>
60 </configuration>
61 </execution>
62 </executions>
63 </plugin>
64 </plugins>
65 </build>
66 </profile>
67 </profiles>
68 </project>