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