comparison pom.xml @ 720:5815920ccabc

Removed the OpenId authentorization files and dependencies.
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 14 Aug 2015 09:43:29 +0200
parents 1fa184bc2768
children 9ff0882d73d8
comparison
equal deleted inserted replaced
719:a4932159a469 720:5815920ccabc
4 <modelVersion>4.0.0</modelVersion> 4 <modelVersion>4.0.0</modelVersion>
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-dev</artifactId>
10 <packaging>war</packaging> 10 <packaging>war</packaging>
11 <parent> 11 <parent>
12 <groupId>org.jboss</groupId> 12 <groupId>org.jboss</groupId>
13 <artifactId>jboss-parent</artifactId> 13 <artifactId>jboss-parent</artifactId>
14 <version>14</version> 14 <version>14</version>
67 <dependency> 67 <dependency>
68 <groupId>com.fasterxml.jackson.core</groupId> 68 <groupId>com.fasterxml.jackson.core</groupId>
69 <artifactId>jackson-annotations</artifactId> 69 <artifactId>jackson-annotations</artifactId>
70 <version>2.5.1</version> 70 <version>2.5.1</version>
71 </dependency> 71 </dependency>
72 <dependency>
73 <groupId>org.opensaml</groupId>
74 <artifactId>opensaml</artifactId>
75 <version>2.6.4</version>
76 </dependency>
72 77
73 <!-- Hibernate --> 78 <!-- Hibernate -->
74 <dependency> 79 <dependency>
75 <groupId>org.hibernate</groupId> 80 <groupId>org.hibernate</groupId>
76 <artifactId>hibernate-entitymanager</artifactId> 81 <artifactId>hibernate-entitymanager</artifactId>
157 <configuration> 162 <configuration>
158 <skip>true</skip> 163 <skip>true</skip>
159 </configuration> 164 </configuration>
160 </plugin> 165 </plugin>
161 <plugin> 166 <plugin>
162 <artifactId>maven-compiler-plugin</artifactId> 167 <artifactId>maven-compiler-plugin</artifactId>
163 <version>3.1</version> 168 <version>3.1</version>
164 <executions> 169 <configuration>
165 <execution> 170 <showDeprecation>true</showDeprecation>
166 <id>default-testCompile</id> 171 <showWarnings>true</showWarnings>
167 <phase>test-compile</phase> 172 <compilerArguments>
168 <goals> 173 <source>1.7</source>
169 <goal>testCompile</goal> 174 <target>1.7</target>
170 </goals> 175 </compilerArguments>
171 <configuration> 176 </configuration>
172 <excludes> 177 </plugin>
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>
199 </plugins> 178 </plugins>
200 </build> 179 </build>
201 <dependencies>
202 <dependency>
203 <groupId>org.openid4java</groupId>
204 <artifactId>openid4java</artifactId>
205 <version>1.0.0</version>
206 </dependency>
207 </dependencies>
208 </profile> 180 </profile>
209 181
210 <profile> 182 <profile>
211 <id>remote-test</id> 183 <id>remote-test</id>
212 <build> 184 <build>
213 <plugins> 185 <plugins>
214 <plugin> 186 <plugin>
215 <artifactId>maven-compiler-plugin</artifactId> 187 <artifactId>maven-compiler-plugin</artifactId>
216 <version>3.1</version> 188 <version>3.1</version>
217 <executions> 189 <configuration>
218 <execution> 190 <showDeprecation>true</showDeprecation>
219 <id>default-testCompile</id> 191 <showWarnings>true</showWarnings>
220 <phase>test-compile</phase> 192 <compilerArguments>
221 <goals> 193 <source>1.7</source>
222 <goal>testCompile</goal> 194 <target>1.7</target>
223 </goals> 195 </compilerArguments>
224 <configuration> 196 </configuration>
225 <excludes> 197 </plugin>
226 <exclude>**/auth/OpenIdAuthorization.java</exclude> 198 </plugins>
227 <exclude>**/auth/OpenIDFilter.java</exclude> 199 </build>
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>
256 <dependencies> 200 <dependencies>
257 <dependency> 201 <dependency>
258 <groupId>org.wildfly</groupId> 202 <groupId>org.wildfly</groupId>
259 <artifactId>wildfly-arquillian-container-remote</artifactId> 203 <artifactId>wildfly-arquillian-container-remote</artifactId>
260 <version>8.2.0.Final</version> 204 <version>8.2.0.Final</version>
278 <profile> 222 <profile>
279 <id>remote-deploy</id> 223 <id>remote-deploy</id>
280 <build> 224 <build>
281 <plugins> 225 <plugins>
282 <plugin> 226 <plugin>
227 <artifactId>maven-surefire-plugin</artifactId>
228 <configuration>
229 <skip>true</skip>
230 </configuration>
231 </plugin>
232 <plugin>
233 <artifactId>maven-compiler-plugin</artifactId>
234 <version>3.1</version>
235 <configuration>
236 <showDeprecation>true</showDeprecation>
237 <showWarnings>true</showWarnings>
238 <compilerArguments>
239 <source>1.7</source>
240 <target>1.7</target>
241 </compilerArguments>
242 </configuration>
243 </plugin>
244 <plugin>
283 <groupId>org.wildfly.plugins</groupId> 245 <groupId>org.wildfly.plugins</groupId>
284 <artifactId>wildfly-maven-plugin</artifactId> 246 <artifactId>wildfly-maven-plugin</artifactId>
285 <configuration> 247 <configuration>
286 <hostname>eulimene</hostname> 248 <hostname>localhost</hostname>
287 <port>9990</port> 249 <port>19990</port>
288 <username>admin</username> 250 <username>admin</username>
289 <password>secret</password> 251 <password>secret</password>
290 </configuration> 252 </configuration>
291 <executions> 253 <!-- <executions>
292 <execution> 254 <execution>
293 <id>deploy-jar</id> 255 <id>deploy-jar</id>
294 <phase>install</phase> 256 <phase>install</phase>
295 <goals> 257 <goals>
296 <goal>deploy</goal> 258 <goal>deploy</goal>
297 </goals> 259 </goals>
298 </execution> 260 </execution>
299 </executions> 261 </executions>-->
300 </plugin> 262 </plugin>
301 </plugins> 263 </plugins>
302 </build> 264 </build>
303 <dependencies>
304 <dependency>
305 <groupId>org.openid4java</groupId>
306 <artifactId>openid4java</artifactId>
307 <version>1.0.0</version>
308 </dependency>
309 </dependencies>
310 </profile> 265 </profile>
311 </profiles> 266 </profiles>
312 267
313 <repositories> 268 <repositories>
314 <repository> 269 <repository>
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)