]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/org.argeo.slc.dep.e4.rap/pom.xml
Deactivate Argeo Commons Legacy build
[gpl/argeo-slc.git] / dep / 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
27 <!-- OSGi Boot for platform generation only, as it could be used by regular
28 Java applications to launch an OSGi runtime. -->
29 <dependency>
30 <groupId>org.argeo.commons</groupId>
31 <artifactId>org.argeo.osgi.boot</artifactId>
32 <version>${version.argeo-commons}</version>
33 <scope>test</scope>
34 </dependency>
35
36 <!-- ALM Third Parties -->
37 <!-- <dependency> -->
38 <!-- <groupId>org.argeo.tp.apache.ant</groupId> -->
39 <!-- <artifactId>org.apache.ant</artifactId> -->
40 <!-- </dependency> -->
41 <!-- <dependency> -->
42 <!-- <groupId>org.argeo.tp.apache.ant</groupId> -->
43 <!-- <artifactId>org.apache.ant.launch</artifactId> -->
44 <!-- </dependency> -->
45
46 <!-- <dependency> -->
47 <!-- <groupId>org.argeo.tp.sdk</groupId> -->
48 <!-- <artifactId>biz.aQute.bndlib</artifactId> -->
49 <!-- </dependency> -->
50 <!-- <dependency> -->
51 <!-- <groupId>org.argeo.tp.sdk</groupId> -->
52 <!-- <artifactId>org.junit</artifactId> -->
53 <!-- </dependency> -->
54 <!-- <dependency> -->
55 <!-- <groupId>org.argeo.tp.sdk</groupId> -->
56 <!-- <artifactId>org.redline-rpm</artifactId> -->
57 <!-- </dependency> -->
58 <!-- <dependency> -->
59 <!-- <groupId>org.argeo.tp.misc</groupId> -->
60 <!-- <artifactId>com.googlecode.javaewah.JavaEWAH</artifactId> -->
61 <!-- </dependency> -->
62 <!-- <dependency> -->
63 <!-- <groupId>org.argeo.tp.misc</groupId> -->
64 <!-- <artifactId>org.eclipse.jgit</artifactId> -->
65 <!-- </dependency> -->
66 </dependencies>
67 <profiles>
68 <profile>
69 <id>rpmbuild</id>
70 <build>
71 <plugins>
72 <plugin>
73 <artifactId>maven-assembly-plugin</artifactId>
74 <executions>
75 <execution>
76 <id>prepare-source</id>
77 <phase>package</phase>
78 <goals>
79 <goal>single</goal>
80 </goals>
81 <configuration>
82 <descriptorRefs>
83 <descriptorRef>a2-source</descriptorRef>
84 </descriptorRefs>
85 </configuration>
86 </execution>
87 </executions>
88 </plugin>
89 <plugin>
90 <groupId>org.codehaus.mojo</groupId>
91 <artifactId>rpm-maven-plugin</artifactId>
92 <executions>
93 <execution>
94 <id>rpm-argeo</id>
95 <phase>package</phase>
96 <goals>
97 <goal>rpm</goal>
98 </goals>
99 <configuration>
100 <name>argeo-slc-e4-rap${argeo.rpm.suffix}</name>
101 <mappings>
102 <mapping>
103 <directory>/usr/share/osgi</directory>
104 <username>root</username>
105 <groupname>root</groupname>
106 <filemode>644</filemode>
107 <directoryIncluded>true</directoryIncluded>
108 <sources>
109 <source>
110 <location>${project.build.directory}/${project.artifactId}-${project.version}-a2-source</location>
111 <includes>
112 <include>**/*.jar</include>
113 </includes>
114 </source>
115 </sources>
116 </mapping>
117 </mappings>
118 <requires>
119 <require>argeo-cms-e4-rap${argeo.rpm.suffix}</require>
120 <require>argeo-cms-sdk-tp${argeo.rpm.suffix}</require>
121 <require>argeo-slc${argeo.rpm.suffix}</require>
122 </requires>
123 </configuration>
124 </execution>
125 </executions>
126 </plugin>
127 </plugins>
128 </build>
129 </profile>
130 </profiles>
131 </project>