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