]> git.argeo.org Git - lgpl/argeo-commons.git/blob - dep/org.argeo.eclipse.dep.rap/pom.xml
[maven-release-plugin] rollback the release of argeo-commons-2.1.12
[lgpl/argeo-commons.git] / dep / org.argeo.eclipse.dep.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"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo.commons</groupId>
7 <artifactId>dep</artifactId>
8 <version>2.1.12-SNAPSHOT</version>
9 <relativePath>..</relativePath>
10 </parent>
11 <artifactId>org.argeo.eclipse.dep.rap</artifactId>
12 <name>Eclipse RAP Dependencies</name>
13 <packaging>pom</packaging>
14 <dependencies>
15 <dependency>
16 <groupId>org.argeo.tp.rap.addons</groupId>
17 <artifactId>binaries</artifactId>
18 <version>${version.rap.addons}</version>
19 <type>pom</type>
20 <exclusions>
21 <exclusion>
22 <!-- TODO remove OSGi runtime from addons -->
23 <groupId>org.argeo.tp.rap.addons</groupId>
24 <artifactId>org.eclipse.osgi</artifactId>
25 </exclusion>
26 </exclusions>
27 </dependency>
28
29 <dependency>
30 <groupId>org.argeo.tp.rap.platform</groupId>
31 <artifactId>binaries</artifactId>
32 <version>${version.rap}</version>
33 <type>pom</type>
34 <exclusions>
35 <!-- Not used -->
36 <exclusion>
37 <groupId>org.argeo.tp.rap.platform</groupId>
38 <artifactId>org.eclipse.rap.ui.cheatsheets</artifactId>
39 </exclusion>
40
41 <!-- Example, demos -->
42 <exclusion>
43 <groupId>org.argeo.tp.rap.platform</groupId>
44 <artifactId>org.eclipse.rap.demo</artifactId>
45 </exclusion>
46 <exclusion>
47 <groupId>org.argeo.tp.rap.platform</groupId>
48 <artifactId>org.eclipse.rap.demo.databinding</artifactId>
49 </exclusion>
50 <exclusion>
51 <groupId>org.argeo.tp.rap.platform</groupId>
52 <artifactId>org.eclipse.rap.design.example</artifactId>
53 </exclusion>
54 <exclusion>
55 <groupId>org.argeo.tp.rap.platform</groupId>
56 <artifactId>org.eclipse.rap.demo.controls</artifactId>
57 </exclusion>
58 <exclusion>
59 <groupId>org.argeo.tp.rap.platform</groupId>
60 <artifactId>org.eclipse.rap.examples</artifactId>
61 </exclusion>
62 <exclusion>
63 <groupId>org.argeo.tp.rap.platform</groupId>
64 <artifactId>org.eclipse.rap.examples.pages</artifactId>
65 </exclusion>
66
67 <!-- Troublesome bundles -->
68 <exclusion>
69 <groupId>org.argeo.tp.rap.platform</groupId>
70 <artifactId>org.junit</artifactId>
71 </exclusion>
72 <exclusion>
73 <groupId>org.argeo.tp.rap.platform</groupId>
74 <artifactId>org.eclipse.rap.junit</artifactId>
75 </exclusion>
76 <exclusion>
77 <groupId>org.argeo.tp.rap.platform</groupId>
78 <artifactId>org.eclipse.jdt.junit.runtime</artifactId>
79 </exclusion>
80 <exclusion>
81 <groupId>org.argeo.tp.rap.platform</groupId>
82 <artifactId>org.eclipse.rap.junit.runtime</artifactId>
83 </exclusion>
84 <exclusion>
85 <groupId>org.argeo.tp.rap.platform</groupId>
86 <artifactId>org.eclipse.rap.rwt.testfixture</artifactId>
87 </exclusion>
88 <!-- Felix Gogo shell -->
89 <exclusion>
90 <groupId>org.argeo.tp.rap.platform</groupId>
91 <artifactId>org.apache.felix.gogo.runtime</artifactId>
92 </exclusion>
93 <exclusion>
94 <groupId>org.argeo.tp.rap.platform</groupId>
95 <artifactId>org.apache.felix.gogo.shell</artifactId>
96 </exclusion>
97 <exclusion>
98 <groupId>org.argeo.tp.rap.platform</groupId>
99 <artifactId>org.apache.felix.gogo.command</artifactId>
100 </exclusion>
101 <exclusion>
102 <groupId>org.argeo.tp.rap.platform</groupId>
103 <artifactId>org.eclipse.equinox.console</artifactId>
104 </exclusion>
105 </exclusions>
106 </dependency>
107
108 <!-- Needed by upload -->
109 <dependency>
110 <groupId>org.argeo.tp</groupId>
111 <artifactId>org.apache.commons.io</artifactId>
112 </dependency>
113 <dependency>
114 <groupId>org.argeo.tp</groupId>
115 <artifactId>org.apache.commons.fileupload</artifactId>
116 </dependency>
117
118 <!-- RAP Specific Dependencies -->
119 <!-- <dependency> -->
120 <!-- <groupId>org.argeo.tp</groupId> -->
121 <!-- <artifactId>javax.servlet</artifactId> -->
122 <!-- </dependency> -->
123
124 <!-- Security -->
125 <dependency>
126 <groupId>org.argeo.tp.rap</groupId>
127 <artifactId>org.eclipse.equinox.security</artifactId>
128 </dependency>
129
130 </dependencies>
131 <profiles>
132 <profile>
133 <id>check-osgi</id>
134 <build>
135 <plugins>
136 <plugin>
137 <groupId>org.argeo.maven.plugins</groupId>
138 <artifactId>maven-argeo-osgi-plugin</artifactId>
139 <executions>
140 <execution>
141 <id>check-osgi</id>
142 <phase>test</phase>
143 <goals>
144 <goal>equinox</goal>
145 </goals>
146 <configuration>
147 <onlyCheck>true</onlyCheck>
148 </configuration>
149 </execution>
150 </executions>
151 </plugin>
152 </plugins>
153 </build>
154 </profile>
155 <profile>
156 <id>rpmbuild-tp</id>
157 <build>
158 <plugins>
159 <plugin>
160 <groupId>org.codehaus.mojo</groupId>
161 <artifactId>rpm-maven-plugin</artifactId>
162 <executions>
163 <execution>
164 <id>rpm-rap</id>
165 <phase>package</phase>
166 <goals>
167 <goal>rpm</goal>
168 </goals>
169 <configuration>
170 <name>eclipse-rap</name>
171 <projversion>${version.rap}</projversion>
172 <mappings>
173 <mapping>
174 <directory>/usr/share/eclipse-rap</directory>
175 <username>root</username>
176 <groupname>root</groupname>
177 <filemode>644</filemode>
178 <directoryIncluded>false</directoryIncluded>
179 <dependency />
180 </mapping>
181 </mappings>
182 </configuration>
183 </execution>
184 </executions>
185 </plugin>
186 <plugin>
187 <artifactId>maven-antrun-plugin</artifactId>
188 <executions>
189 <execution>
190 <phase>install</phase>
191 <goals>
192 <goal>run</goal>
193 </goals>
194 <configuration>
195 <target>
196 <copy todir="${rpm.stagingRepository}" verbose="true">
197 <fileset dir="${project.build.directory}/rpm"
198 includes="*/RPMS/**/*.rpm" />
199 <flattenmapper />
200 </copy>
201 </target>
202 </configuration>
203 </execution>
204 </executions>
205 </plugin>
206 </plugins>
207 </build>
208 </profile>
209 </profiles>
210 </project>