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