]> git.argeo.org Git - gpl/argeo-suite.git/blob - dep/org.argeo.suite.dep.e4.rcp/pom.xml
Fix & in RAP links.
[gpl/argeo-suite.git] / dep / org.argeo.suite.dep.e4.rcp / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <parent>
7 <groupId>org.argeo.suite</groupId>
8 <artifactId>dep</artifactId>
9 <version>2.1.16-SNAPSHOT</version>
10 <relativePath>..</relativePath>
11 </parent>
12 <artifactId>org.argeo.suite.dep.e4.rcp</artifactId>
13 <name>Suite E4 Platform RCP</name>
14 <packaging>jar</packaging>
15 <dependencies>
16 <!-- Base Argeo platform distribution -->
17 <dependency>
18 <groupId>org.argeo.slc.rcp</groupId>
19 <artifactId>org.argeo.dep.cms.e4.rcp</artifactId>
20 <version>${version.argeo-slc}</version>
21 <type>pom</type>
22 </dependency>
23
24 <!-- Argeo TP Extras -->
25 <!-- <dependency> -->
26 <!-- <groupId>org.argeo.tp.payment</groupId> -->
27 <!-- <artifactId>com.stripe</artifactId> -->
28 <!-- </dependency> -->
29
30 </dependencies>
31 <profiles>
32 <profile>
33 <id>rpmbuild</id>
34 <build>
35 <plugins>
36 <plugin>
37 <artifactId>maven-assembly-plugin</artifactId>
38 <executions>
39 <execution>
40 <id>prepare-source</id>
41 <phase>package</phase>
42 <goals>
43 <goal>single</goal>
44 </goals>
45 <configuration>
46 <descriptorRefs>
47 <descriptorRef>a2-source</descriptorRef>
48 </descriptorRefs>
49 </configuration>
50 </execution>
51 </executions>
52 </plugin>
53 <!-- <plugin> -->
54 <!-- <groupId>org.apache.maven.plugins</groupId> -->
55 <!-- <artifactId>maven-dependency-plugin</artifactId> -->
56 <!-- <executions> -->
57 <!-- <execution> -->
58 <!-- <id>copy-argeo</id> -->
59 <!-- <phase>package</phase> -->
60 <!-- <goals> -->
61 <!-- <goal>copy-dependencies</goal> -->
62 <!-- </goals> -->
63 <!-- <configuration> -->
64 <!-- <includeTypes>jar</includeTypes> -->
65 <!-- <outputDirectory>${project.build.directory}/lib-argeo</outputDirectory> -->
66 <!-- <includeGroupIds>org.argeo.suite</includeGroupIds> -->
67 <!-- <includeTypes>jar</includeTypes> -->
68 <!-- <includeScope>runtime</includeScope> -->
69 <!-- <useRepositoryLayout>true</useRepositoryLayout> -->
70 <!-- </configuration> -->
71 <!-- </execution> -->
72 <!-- </executions> -->
73 <!-- </plugin> -->
74 <plugin>
75 <groupId>org.codehaus.mojo</groupId>
76 <artifactId>rpm-maven-plugin</artifactId>
77 <executions>
78 <execution>
79 <id>rpm-argeo</id>
80 <phase>package</phase>
81 <goals>
82 <goal>rpm</goal>
83 </goals>
84 <configuration>
85 <name>argeo-suite-e4-rcp</name>
86 <mappings>
87 <mapping>
88 <directory>/usr/share/osgi</directory>
89 <username>root</username>
90 <groupname>root</groupname>
91 <filemode>644</filemode>
92 <directoryIncluded>true</directoryIncluded>
93 <sources>
94 <source>
95 <location>${project.build.directory}/${project.artifactId}-${project.version}-a2-source</location>
96 <includes>
97 <include>**/*.jar</include>
98 </includes>
99 </source>
100 </sources>
101 </mapping>
102 </mappings>
103 <requires>
104 <require>argeo-cms-e4-rcp</require>
105 <require>argeo-connect-tp</require>
106 </requires>
107 </configuration>
108 </execution>
109 </executions>
110 </plugin>
111 </plugins>
112 </build>
113 </profile>
114 </profiles>
115 </project>