comparison pom.xml @ 641:c08773b0872e

Fixed project dependencies and openid authentication/authorization for tests.
author Raimund Renkert <raimund.renkert@intevation.de>
date Thu, 30 Apr 2015 16:26:08 +0200
parents a56b912bead4
children 3b1755df4f33
comparison
equal deleted inserted replaced
640:bd4099d42d83 641:c08773b0872e
5 5
6 <name>Lada Server</name> 6 <name>Lada Server</name>
7 7
8 <groupId>de.intevation</groupId> 8 <groupId>de.intevation</groupId>
9 <artifactId>lada-server</artifactId> 9 <artifactId>lada-server</artifactId>
10 <version>1.0.1</version>
11 <packaging>war</packaging> 10 <packaging>war</packaging>
12 <parent> 11 <parent>
13 <groupId>org.jboss</groupId> 12 <groupId>org.jboss</groupId>
14 <artifactId>jboss-parent</artifactId> 13 <artifactId>jboss-parent</artifactId>
15 <version>14</version> 14 <version>14</version>
138 <scope>test</scope> 137 <scope>test</scope>
139 </dependency> 138 </dependency>
140 <dependency> 139 <dependency>
141 <groupId>org.jboss.resteasy</groupId> 140 <groupId>org.jboss.resteasy</groupId>
142 <artifactId>resteasy-client</artifactId> 141 <artifactId>resteasy-client</artifactId>
143 <version>3.0.10.Final</version> 142 <version>3.0.11.Final</version>
144 <scope>test</scope> 143 <scope>test</scope>
145 </dependency>
146
147 <!-- OpenID -->
148 <dependency>
149 <groupId>org.openid4java</groupId>
150 <artifactId>openid4java</artifactId>
151 <version>0.9.7</version>
152 </dependency> 144 </dependency>
153 </dependencies> 145 </dependencies>
154 146
155 <profiles> 147 <profiles>
156 <profile> 148 <profile>
164 <artifactId>maven-surefire-plugin</artifactId> 156 <artifactId>maven-surefire-plugin</artifactId>
165 <configuration> 157 <configuration>
166 <skip>true</skip> 158 <skip>true</skip>
167 </configuration> 159 </configuration>
168 </plugin> 160 </plugin>
161 <plugin>
162 <artifactId>maven-compiler-plugin</artifactId>
163 <version>3.1</version>
164 <executions>
165 <execution>
166 <id>default-testCompile</id>
167 <phase>test-compile</phase>
168 <goals>
169 <goal>testCompile</goal>
170 </goals>
171 <configuration>
172 <excludes>
173 <exclude>**/auth/TestAuthorization.java</exclude>
174 </excludes>
175 </configuration>
176 </execution>
177 <execution>
178 <id>default-compile</id>
179 <phase>compile</phase>
180 <goals>
181 <goal>compile</goal>
182 </goals>
183 <configuration>
184 <excludes>
185 <exclude>**/auth/TestAuthorization.java</exclude>
186 </excludes>
187 </configuration>
188 </execution>
189 </executions>
190 <configuration>
191 <showDeprecation>true</showDeprecation>
192 <showWarnings>true</showWarnings>
193 <compilerArguments>
194 <source>1.7</source>
195 <target>1.7</target>
196 </compilerArguments>
197 </configuration>
198 </plugin>
169 </plugins> 199 </plugins>
170 </build> 200 </build>
201 <dependencies>
202 <dependency>
203 <groupId>org.openid4java</groupId>
204 <artifactId>openid4java</artifactId>
205 <version>1.0.0</version>
206 </dependency>
207 </dependencies>
171 </profile> 208 </profile>
172 209
173 <profile> 210 <profile>
174 <id>remote-test</id> 211 <id>remote-test</id>
212 <build>
213 <plugins>
214 <plugin>
215 <artifactId>maven-compiler-plugin</artifactId>
216 <version>3.1</version>
217 <executions>
218 <execution>
219 <id>default-testCompile</id>
220 <phase>test-compile</phase>
221 <goals>
222 <goal>testCompile</goal>
223 </goals>
224 <configuration>
225 <excludes>
226 <exclude>**/auth/OpenIdAuthorization.java</exclude>
227 <exclude>**/auth/OpenIDFilter.java</exclude>
228 </excludes>
229 </configuration>
230 </execution>
231 <execution>
232 <id>default-compile</id>
233 <phase>compile</phase>
234 <goals>
235 <goal>compile</goal>
236 </goals>
237 <configuration>
238 <excludes>
239 <exclude>**/auth/OpenIdAuthorization.java</exclude>
240 <exclude>**/auth/OpenIDFilter.java</exclude>
241 </excludes>
242 </configuration>
243 </execution>
244 </executions>
245 <configuration>
246 <showDeprecation>true</showDeprecation>
247 <showWarnings>true</showWarnings>
248 <compilerArguments>
249 <source>1.7</source>
250 <target>1.7</target>
251 </compilerArguments>
252 </configuration>
253 </plugin>
254 </plugins>
255 </build>
175 <dependencies> 256 <dependencies>
176 <dependency> 257 <dependency>
177 <groupId>org.wildfly</groupId> 258 <groupId>org.wildfly</groupId>
178 <artifactId>wildfly-arquillian-container-remote</artifactId> 259 <artifactId>wildfly-arquillian-container-remote</artifactId>
179 <version>8.2.0.Final</version> 260 <version>8.2.0.Final</version>
230 <repository> 311 <repository>
231 <id>Hibernate Spatial repo</id> 312 <id>Hibernate Spatial repo</id>
232 <url>http://www.hibernatespatial.org/repository</url> 313 <url>http://www.hibernatespatial.org/repository</url>
233 </repository> 314 </repository>
234 </repositories> 315 </repositories>
316 <version>2.0-beta1</version>
235 </project> 317 </project>
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)