]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.dep.e4.rap/pom.xml
Prepare next development cycle
[gpl/argeo-slc.git] / org.argeo.slc.dep.e4.rap / 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>2.3-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.dep.e4.rap</artifactId>
10 <name>SLC E4 RAP</name>
11 <dependencies>
12 <!-- Parent dependencies -->
13 <dependency>
14 <groupId>org.argeo.commons</groupId>
15 <artifactId>org.argeo.dep.cms.e4.rap</artifactId>
16 <version>${version.argeo-commons}</version>
17 <type>pom</type>
18 </dependency>
19 <dependency>
20 <groupId>org.argeo.slc</groupId>
21 <artifactId>org.argeo.slc.dep.minimal</artifactId>
22 <version>2.3-SNAPSHOT</version>
23 <type>pom</type>
24 </dependency>
25
26 <!-- ALM Third Parties -->
27 <!-- <dependency> -->
28 <!-- <groupId>org.argeo.tp.apache.ant</groupId> -->
29 <!-- <artifactId>org.apache.ant</artifactId> -->
30 <!-- </dependency> -->
31 <!-- <dependency> -->
32 <!-- <groupId>org.argeo.tp.apache.ant</groupId> -->
33 <!-- <artifactId>org.apache.ant.launch</artifactId> -->
34 <!-- </dependency> -->
35
36 <!-- <dependency> -->
37 <!-- <groupId>org.argeo.tp.sdk</groupId> -->
38 <!-- <artifactId>biz.aQute.bndlib</artifactId> -->
39 <!-- </dependency> -->
40 <!-- <dependency> -->
41 <!-- <groupId>org.argeo.tp.sdk</groupId> -->
42 <!-- <artifactId>org.junit</artifactId> -->
43 <!-- </dependency> -->
44 <!-- <dependency> -->
45 <!-- <groupId>org.argeo.tp.sdk</groupId> -->
46 <!-- <artifactId>org.redline-rpm</artifactId> -->
47 <!-- </dependency> -->
48 <!-- <dependency> -->
49 <!-- <groupId>org.argeo.tp.misc</groupId> -->
50 <!-- <artifactId>com.googlecode.javaewah.JavaEWAH</artifactId> -->
51 <!-- </dependency> -->
52 <!-- <dependency> -->
53 <!-- <groupId>org.argeo.tp.misc</groupId> -->
54 <!-- <artifactId>org.eclipse.jgit</artifactId> -->
55 <!-- </dependency> -->
56 </dependencies>
57 <profiles>
58 <profile>
59 <id>rpmbuild</id>
60 <build>
61 <plugins>
62 <plugin>
63 <artifactId>maven-assembly-plugin</artifactId>
64 <executions>
65 <execution>
66 <id>prepare-source</id>
67 <phase>package</phase>
68 <goals>
69 <goal>single</goal>
70 </goals>
71 <configuration>
72 <descriptorRefs>
73 <descriptorRef>a2-source</descriptorRef>
74 </descriptorRefs>
75 </configuration>
76 </execution>
77 </executions>
78 </plugin>
79 <plugin>
80 <groupId>org.codehaus.mojo</groupId>
81 <artifactId>rpm-maven-plugin</artifactId>
82 <executions>
83 <execution>
84 <id>rpm-argeo</id>
85 <phase>package</phase>
86 <goals>
87 <goal>rpm</goal>
88 </goals>
89 <configuration>
90 <name>argeo-slc-e4-rap${argeo.rpm.suffix}</name>
91 <mappings>
92 <mapping>
93 <directory>/usr/share/osgi</directory>
94 <username>root</username>
95 <groupname>root</groupname>
96 <filemode>644</filemode>
97 <directoryIncluded>true</directoryIncluded>
98 <sources>
99 <source>
100 <location>${project.build.directory}/${project.artifactId}-${project.version}-a2-source</location>
101 <includes>
102 <include>**/*.jar</include>
103 </includes>
104 </source>
105 </sources>
106 </mapping>
107 </mappings>
108 <requires>
109 <require>argeo-cms-e4-rap${argeo.rpm.suffix}</require>
110 <require>argeo-cms-sdk-tp${argeo.rpm.suffix}</require>
111 <require>argeo-slc${argeo.rpm.suffix}</require>
112 </requires>
113 </configuration>
114 </execution>
115 </executions>
116 </plugin>
117 </plugins>
118 </build>
119 </profile>
120 </profiles>
121 </project>