]> git.argeo.org Git - lgpl/argeo-commons.git/blob - dep/org.argeo.dep.cms.ui.rap/pom.xml
[maven-release-plugin] prepare release argeo-commons-2.3.5
[lgpl/argeo-commons.git] / dep / org.argeo.dep.cms.ui.rap / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
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.commons</groupId>
6 <version>2.3.5</version>
7 <artifactId>dep</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.dep.cms.ui.rap</artifactId>
11 <name>CMS Platform UI RAP</name>
12 <dependencies>
13
14 <!-- Argeo Commons -->
15 <dependency>
16 <groupId>org.argeo.commons</groupId>
17 <artifactId>org.argeo.dep.cms.node</artifactId>
18 <version>2.3.5</version>
19 <type>pom</type>
20 </dependency>
21
22 <!-- SWT -->
23 <dependency>
24 <groupId>org.argeo.commons</groupId>
25 <artifactId>org.argeo.cms.swt</artifactId>
26 <version>2.3.5</version>
27 </dependency>
28 <dependency>
29 <groupId>org.argeo.commons</groupId>
30 <artifactId>org.argeo.cms.ui</artifactId>
31 <version>2.3.5</version>
32 </dependency>
33
34 <!-- Eclipse RAP -->
35 <dependency>
36 <groupId>org.argeo.commons.rap</groupId>
37 <artifactId>org.argeo.swt.specific.rap</artifactId>
38 <version>2.3.5</version>
39 </dependency>
40 <dependency>
41 <groupId>org.argeo.commons.rap</groupId>
42 <artifactId>org.argeo.cms.ui.rap</artifactId>
43 <version>2.3.5</version>
44 </dependency>
45
46 <!-- RWT -->
47 <dependency>
48 <groupId>org.argeo.tp.rap.e4</groupId>
49 <artifactId>org.eclipse.rap.rwt</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>org.argeo.tp.rap.e4</groupId>
53 <artifactId>org.eclipse.rap.rwt.osgi</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.argeo.tp.rap.e4</groupId>
57 <artifactId>org.eclipse.core.commands</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>org.argeo.tp.rap.e4</groupId>
61 <artifactId>org.eclipse.rap.jface</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.argeo.tp.rap.e4</groupId>
65 <artifactId>org.eclipse.rap.filedialog</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.argeo.tp.rap.e4</groupId>
69 <artifactId>org.eclipse.rap.fileupload</artifactId>
70 </dependency>
71
72 <!-- SDK -->
73 <dependency>
74 <groupId>org.argeo.tp.sdk</groupId>
75 <artifactId>org.junit</artifactId>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.argeo.tp.sdk</groupId>
80 <artifactId>org.hamcrest</artifactId>
81 <scope>test</scope>
82 </dependency>
83
84 </dependencies>
85 <dependencyManagement>
86 </dependencyManagement>
87 <profiles>
88 <profile>
89 <id>rpmbuild</id>
90 <build>
91 <plugins>
92 <plugin>
93 <artifactId>maven-assembly-plugin</artifactId>
94 <executions>
95 <execution>
96 <id>prepare-source</id>
97 <phase>package</phase>
98 <goals>
99 <goal>single</goal>
100 </goals>
101 <configuration>
102 <descriptorRefs>
103 <descriptorRef>a2-source</descriptorRef>
104 </descriptorRefs>
105 </configuration>
106 </execution>
107 </executions>
108 </plugin>
109 <plugin>
110 <groupId>org.codehaus.mojo</groupId>
111 <artifactId>rpm-maven-plugin</artifactId>
112 <executions>
113 <execution>
114 <id>rpm-argeo</id>
115 <phase>package</phase>
116 <goals>
117 <goal>rpm</goal>
118 </goals>
119 <configuration>
120 <name>argeo-cms-ui-rap${argeo.rpm.suffix}</name>
121 <mappings>
122 <mapping>
123 <directory>/usr/share/osgi</directory>
124 <username>root</username>
125 <groupname>root</groupname>
126 <filemode>644</filemode>
127 <directoryIncluded>false</directoryIncluded>
128 <sources>
129 <source>
130 <location>${project.build.directory}/${project.artifactId}-${project.version}-a2-source</location>
131 <includes>
132 <include>**/*.jar</include>
133 </includes>
134 </source>
135 </sources>
136 </mapping>
137 </mappings>
138 <requires>
139 <require>argeo-cms-node${argeo.rpm.suffix}</require>
140 <require>argeo-cms-ui-rap-tp${argeo.rpm.suffix}</require>
141 </requires>
142 </configuration>
143 </execution>
144 </executions>
145 </plugin>
146 </plugins>
147 </build>
148 </profile>
149 <profile>
150 <id>rpmbuild-tp</id>
151 <build>
152 <plugins>
153 <plugin>
154 <artifactId>maven-assembly-plugin</artifactId>
155 <executions>
156 <execution>
157 <id>prepare-source-tp</id>
158 <phase>package</phase>
159 <goals>
160 <goal>single</goal>
161 </goals>
162 <configuration>
163 <descriptorRefs>
164 <descriptorRef>a2-source-tp</descriptorRef>
165 </descriptorRefs>
166 </configuration>
167 </execution>
168 </executions>
169 </plugin>
170 <plugin>
171 <groupId>org.codehaus.mojo</groupId>
172 <artifactId>rpm-maven-plugin</artifactId>
173 <executions>
174 <execution>
175 <id>rpm-tp</id>
176 <phase>package</phase>
177 <goals>
178 <goal>rpm</goal>
179 </goals>
180 <configuration>
181 <name>argeo-cms-ui-rap-tp${argeo.rpm.suffix}</name>
182 <projversion>${version.argeo-tp}</projversion>
183 <release>${argeo.rpm.release.tp}</release>
184 <mappings>
185 <mapping>
186 <directory>/usr/share/osgi</directory>
187 <username>root</username>
188 <groupname>root</groupname>
189 <filemode>644</filemode>
190 <directoryIncluded>false</directoryIncluded>
191 <sources>
192 <source>
193 <location>${project.build.directory}/${project.artifactId}-${project.version}-a2-source-tp</location>
194 <includes>
195 <include>**/*.jar</include>
196 </includes>
197 </source>
198 </sources>
199 </mapping>
200 </mappings>
201 <requires>
202 <require>argeo-cms-node-tp${argeo.rpm.suffix}</require>
203 </requires>
204 </configuration>
205 </execution>
206 </executions>
207 </plugin>
208 </plugins>
209 </build>
210 </profile>
211 </profiles>
212 </project>