]> git.argeo.org Git - gpl/argeo-suite.git/blob - dep/org.argeo.suite.dep.e4.rap/pom.xml
Prepare release.
[gpl/argeo-suite.git] / dep / org.argeo.suite.dep.e4.rap / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.suite</groupId>
6 <artifactId>dep</artifactId>
7 <version>2.1.15-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.suite.dep.e4.rap</artifactId>
11 <name>Suite E4 Platform RAP</name>
12 <packaging>jar</packaging>
13 <dependencies>
14 <!-- Default Assembly for supported minimal set of Argeo Suite Features -->
15 <dependency>
16 <groupId>org.argeo.suite</groupId>
17 <artifactId>org.argeo.suite.cms</artifactId>
18 <version>2.1.15-SNAPSHOT</version>
19 </dependency>
20 <dependency>
21 <groupId>org.argeo.suite</groupId>
22 <artifactId>org.argeo.suite.e4</artifactId>
23 <version>2.1.15-SNAPSHOT</version>
24 </dependency>
25 <dependency>
26 <groupId>org.argeo.suite</groupId>
27 <artifactId>org.argeo.suite.e4.rap</artifactId>
28 <version>2.1.15-SNAPSHOT</version>
29 </dependency>
30 <!-- <dependency> -->
31 <!-- <groupId>org.argeo.suite</groupId> -->
32 <!-- <artifactId>org.argeo.suite.web</artifactId> -->
33 <!-- <version>0.1.13-SNAPSHOT</version> -->
34 <!-- </dependency> -->
35
36 <!-- Base CMS distribution -->
37 <dependency>
38 <groupId>org.argeo.connect</groupId>
39 <artifactId>org.argeo.connect.dep.e4.rap</artifactId>
40 <version>${version.argeo-connect}</version>
41 <type>pom</type>
42 </dependency>
43
44 <!-- Argeo TP Extras -->
45 <dependency>
46 <groupId>org.argeo.tp.payment</groupId>
47 <artifactId>com.stripe</artifactId>
48 </dependency>
49
50 </dependencies>
51 <profiles>
52 <profile>
53 <id>rpmbuild</id>
54 <build>
55 <plugins>
56 <plugin>
57 <artifactId>maven-assembly-plugin</artifactId>
58 <executions>
59 <execution>
60 <id>prepare-source</id>
61 <phase>package</phase>
62 <goals>
63 <goal>single</goal>
64 </goals>
65 <configuration>
66 <descriptorRefs>
67 <descriptorRef>a2-source</descriptorRef>
68 </descriptorRefs>
69 </configuration>
70 </execution>
71 </executions>
72 </plugin>
73 <!-- <plugin> -->
74 <!-- <groupId>org.apache.maven.plugins</groupId> -->
75 <!-- <artifactId>maven-dependency-plugin</artifactId> -->
76 <!-- <executions> -->
77 <!-- <execution> -->
78 <!-- <id>copy-argeo</id> -->
79 <!-- <phase>package</phase> -->
80 <!-- <goals> -->
81 <!-- <goal>copy-dependencies</goal> -->
82 <!-- </goals> -->
83 <!-- <configuration> -->
84 <!-- <includeTypes>jar</includeTypes> -->
85 <!-- <outputDirectory>${project.build.directory}/lib-argeo</outputDirectory> -->
86 <!-- <includeGroupIds>org.argeo.suite</includeGroupIds> -->
87 <!-- <includeTypes>jar</includeTypes> -->
88 <!-- <includeScope>runtime</includeScope> -->
89 <!-- <useRepositoryLayout>true</useRepositoryLayout> -->
90 <!-- </configuration> -->
91 <!-- </execution> -->
92 <!-- </executions> -->
93 <!-- </plugin> -->
94 <plugin>
95 <groupId>org.codehaus.mojo</groupId>
96 <artifactId>rpm-maven-plugin</artifactId>
97 <executions>
98 <execution>
99 <id>rpm-argeo</id>
100 <phase>package</phase>
101 <goals>
102 <goal>rpm</goal>
103 </goals>
104 <configuration>
105 <name>argeo-suite-e4-rap</name>
106 <mappings>
107 <mapping>
108 <directory>/usr/share/osgi</directory>
109 <username>root</username>
110 <groupname>root</groupname>
111 <filemode>644</filemode>
112 <directoryIncluded>true</directoryIncluded>
113 <sources>
114 <source>
115 <location>${project.build.directory}/${project.artifactId}-${project.version}-a2-source</location>
116 <includes>
117 <include>**/*.jar</include>
118 </includes>
119 </source>
120 </sources>
121 </mapping>
122 </mappings>
123 <requires>
124 <require>argeo-connect-e4-rap</require>
125 </requires>
126 </configuration>
127 </execution>
128 </executions>
129 </plugin>
130 </plugins>
131 </build>
132 </profile>
133 </profiles>
134 </project>