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