]> git.argeo.org Git - gpl/argeo-slc.git/blob - dist/slc-maven/pom.xml
Change group base icon in the artifact browser.
[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.17-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.17-SNAPSHOT</version>
16 </dependency>
17 <dependency>
18 <groupId>org.argeo.slc</groupId>
19 <artifactId>org.argeo.slc.lib.build</artifactId>
20 <version>1.1.17-SNAPSHOT</version>
21 </dependency>
22 </dependencies>
23 <profiles>
24 <profile>
25 <id>rpmbuild</id>
26 <build>
27 <plugins>
28 <plugin>
29 <groupId>org.codehaus.mojo</groupId>
30 <artifactId>rpm-maven-plugin</artifactId>
31 <executions>
32 <execution>
33 <id>rpm-slc-maven</id>
34 <phase>package</phase>
35 <goals>
36 <goal>rpm</goal>
37 </goals>
38 <configuration>
39 <name>slc-maven</name>
40 <copyright>2011 Argeo</copyright>
41 <mappings>
42 <mapping>
43 <directory>/usr/share/osgi</directory>
44 <username>root</username>
45 <groupname>root</groupname>
46 <filemode>644</filemode>
47 <directoryIncluded>false</directoryIncluded>
48 <dependency>
49 <includes>
50 <include>org.argeo.slc:org.argeo.slc.support.maven</include>
51 <include>org.argeo.slc:org.argeo.slc.lib.build</include>
52 </includes>
53 </dependency>
54 </mapping>
55 </mappings>
56 <requires>
57 <require>slc-libs</require>
58 </requires>
59 </configuration>
60 </execution>
61 </executions>
62 </plugin>
63 </plugins>
64 </build>
65 </profile>
66 </profiles>
67 </project>