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