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