]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/org.argeo.slc.dep.e4.rap/pom.xml
f1a96897591358c99d0750e2938e25995426e13b
[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.e4.rap</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.spring</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 <!-- ALM Third Parties -->
36 <!-- <dependency> -->
37 <!-- <groupId>org.argeo.tp.apache.ant</groupId> -->
38 <!-- <artifactId>org.apache.ant</artifactId> -->
39 <!-- </dependency> -->
40 <!-- <dependency> -->
41 <!-- <groupId>org.argeo.tp.apache.ant</groupId> -->
42 <!-- <artifactId>org.apache.ant.launch</artifactId> -->
43 <!-- </dependency> -->
44
45 <!-- <dependency> -->
46 <!-- <groupId>org.argeo.tp.sdk</groupId> -->
47 <!-- <artifactId>biz.aQute.bndlib</artifactId> -->
48 <!-- </dependency> -->
49 <!-- <dependency> -->
50 <!-- <groupId>org.argeo.tp.sdk</groupId> -->
51 <!-- <artifactId>org.junit</artifactId> -->
52 <!-- </dependency> -->
53 <!-- <dependency> -->
54 <!-- <groupId>org.argeo.tp.sdk</groupId> -->
55 <!-- <artifactId>org.redline-rpm</artifactId> -->
56 <!-- </dependency> -->
57 <!-- <dependency> -->
58 <!-- <groupId>org.argeo.tp.misc</groupId> -->
59 <!-- <artifactId>com.googlecode.javaewah.JavaEWAH</artifactId> -->
60 <!-- </dependency> -->
61 <!-- <dependency> -->
62 <!-- <groupId>org.argeo.tp.misc</groupId> -->
63 <!-- <artifactId>org.eclipse.jgit</artifactId> -->
64 <!-- </dependency> -->
65 </dependencies>
66 <profiles>
67 <profile>
68 <id>rpmbuild</id>
69 <build>
70 <plugins>
71 <plugin>
72 <artifactId>maven-assembly-plugin</artifactId>
73 <executions>
74 <execution>
75 <id>prepare-source</id>
76 <phase>package</phase>
77 <goals>
78 <goal>single</goal>
79 </goals>
80 <configuration>
81 <descriptorRefs>
82 <descriptorRef>a2-source</descriptorRef>
83 </descriptorRefs>
84 </configuration>
85 </execution>
86 </executions>
87 </plugin>
88 <!-- <plugin> -->
89 <!-- <groupId>org.apache.maven.plugins</groupId> -->
90 <!-- <artifactId>maven-dependency-plugin</artifactId> -->
91 <!-- <executions> -->
92 <!-- <execution> -->
93 <!-- <id>copy-argeo</id> -->
94 <!-- <phase>package</phase> -->
95 <!-- <goals> -->
96 <!-- <goal>copy-dependencies</goal> -->
97 <!-- </goals> -->
98 <!-- <configuration> -->
99 <!-- <includeTypes>jar</includeTypes> -->
100 <!-- <outputDirectory>${project.build.directory}/lib-argeo</outputDirectory> -->
101 <!-- <includeGroupIds>org.argeo.slc</includeGroupIds> -->
102 <!-- <excludeTransitive>true</excludeTransitive> -->
103 <!-- <excludeArtifactIds>org.argeo.slc.dep.minimal</excludeArtifactIds> -->
104 <!-- <includeTypes>jar</includeTypes> -->
105 <!-- <includeScope>runtime</includeScope> -->
106 <!-- <useRepositoryLayout>true</useRepositoryLayout> -->
107 <!-- </configuration> -->
108 <!-- </execution> -->
109 <!-- </executions> -->
110 <!-- </plugin> -->
111 <plugin>
112 <groupId>org.codehaus.mojo</groupId>
113 <artifactId>rpm-maven-plugin</artifactId>
114 <executions>
115 <execution>
116 <id>rpm-argeo</id>
117 <phase>package</phase>
118 <goals>
119 <goal>rpm</goal>
120 </goals>
121 <configuration>
122 <name>slc-e4-rap</name>
123 <mappings>
124 <mapping>
125 <directory>/usr/share/osgi</directory>
126 <username>root</username>
127 <groupname>root</groupname>
128 <filemode>644</filemode>
129 <directoryIncluded>true</directoryIncluded>
130 <sources>
131 <source>
132 <location>${project.build.directory}/${project.artifactId}-${project.version}-a2-source</location>
133 <includes>
134 <include>**/*.jar</include>
135 </includes>
136 </source>
137 </sources>
138 </mapping>
139 <!-- <mapping> -->
140 <!-- <directory>/usr/share/osgi/org/argeo/slc/${project.artifactId}/${project.version}</directory> -->
141 <!-- <username>root</username> -->
142 <!-- <groupname>root</groupname> -->
143 <!-- <directoryIncluded>false</directoryIncluded> -->
144 <!-- <artifact /> -->
145 <!-- </mapping> -->
146 </mappings>
147 <requires>
148 <require>argeo-cms-e4-rap</require>
149 <require>argeo-cms-sdk-tp</require>
150 <require>slc-spring</require>
151 </requires>
152 </configuration>
153 </execution>
154 </executions>
155 </plugin>
156 </plugins>
157 </build>
158 </profile>
159 </profiles>
160 </project>