Mercurial > lada > lada-server
diff 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 |
line wrap: on
line diff
--- a/pom.xml Thu Aug 06 09:59:22 2015 +0200 +++ b/pom.xml Fri Aug 14 09:43:29 2015 +0200 @@ -6,7 +6,7 @@ <name>Lada Server</name> <groupId>de.intevation</groupId> - <artifactId>lada-server</artifactId> + <artifactId>lada-server-dev</artifactId> <packaging>war</packaging> <parent> <groupId>org.jboss</groupId> @@ -69,6 +69,11 @@ <artifactId>jackson-annotations</artifactId> <version>2.5.1</version> </dependency> + <dependency> + <groupId>org.opensaml</groupId> + <artifactId>opensaml</artifactId> + <version>2.6.4</version> + </dependency> <!-- Hibernate --> <dependency> @@ -159,100 +164,39 @@ </configuration> </plugin> <plugin> - <artifactId>maven-compiler-plugin</artifactId> - <version>3.1</version> - <executions> - <execution> - <id>default-testCompile</id> - <phase>test-compile</phase> - <goals> - <goal>testCompile</goal> - </goals> - <configuration> - <excludes> - <exclude>**/auth/TestAuthorization.java</exclude> - </excludes> - </configuration> - </execution> - <execution> - <id>default-compile</id> - <phase>compile</phase> - <goals> - <goal>compile</goal> - </goals> - <configuration> - <excludes> - <exclude>**/auth/TestAuthorization.java</exclude> - </excludes> - </configuration> - </execution> - </executions> - <configuration> - <showDeprecation>true</showDeprecation> - <showWarnings>true</showWarnings> - <compilerArguments> - <source>1.7</source> - <target>1.7</target> - </compilerArguments> - </configuration> - </plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.1</version> + <configuration> + <showDeprecation>true</showDeprecation> + <showWarnings>true</showWarnings> + <compilerArguments> + <source>1.7</source> + <target>1.7</target> + </compilerArguments> + </configuration> + </plugin> </plugins> </build> - <dependencies> - <dependency> - <groupId>org.openid4java</groupId> - <artifactId>openid4java</artifactId> - <version>1.0.0</version> - </dependency> - </dependencies> </profile> <profile> <id>remote-test</id> <build> - <plugins> - <plugin> - <artifactId>maven-compiler-plugin</artifactId> - <version>3.1</version> - <executions> - <execution> - <id>default-testCompile</id> - <phase>test-compile</phase> - <goals> - <goal>testCompile</goal> - </goals> - <configuration> - <excludes> - <exclude>**/auth/OpenIdAuthorization.java</exclude> - <exclude>**/auth/OpenIDFilter.java</exclude> - </excludes> - </configuration> - </execution> - <execution> - <id>default-compile</id> - <phase>compile</phase> - <goals> - <goal>compile</goal> - </goals> - <configuration> - <excludes> - <exclude>**/auth/OpenIdAuthorization.java</exclude> - <exclude>**/auth/OpenIDFilter.java</exclude> - </excludes> - </configuration> - </execution> - </executions> - <configuration> - <showDeprecation>true</showDeprecation> - <showWarnings>true</showWarnings> - <compilerArguments> - <source>1.7</source> - <target>1.7</target> - </compilerArguments> - </configuration> - </plugin> - </plugins> - </build> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.1</version> + <configuration> + <showDeprecation>true</showDeprecation> + <showWarnings>true</showWarnings> + <compilerArguments> + <source>1.7</source> + <target>1.7</target> + </compilerArguments> + </configuration> + </plugin> + </plugins> + </build> <dependencies> <dependency> <groupId>org.wildfly</groupId> @@ -280,15 +224,33 @@ <build> <plugins> <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.1</version> + <configuration> + <showDeprecation>true</showDeprecation> + <showWarnings>true</showWarnings> + <compilerArguments> + <source>1.7</source> + <target>1.7</target> + </compilerArguments> + </configuration> + </plugin> + <plugin> <groupId>org.wildfly.plugins</groupId> <artifactId>wildfly-maven-plugin</artifactId> <configuration> - <hostname>eulimene</hostname> - <port>9990</port> + <hostname>localhost</hostname> + <port>19990</port> <username>admin</username> <password>secret</password> </configuration> - <executions> + <!-- <executions> <execution> <id>deploy-jar</id> <phase>install</phase> @@ -296,17 +258,10 @@ <goal>deploy</goal> </goals> </execution> - </executions> + </executions>--> </plugin> </plugins> </build> - <dependencies> - <dependency> - <groupId>org.openid4java</groupId> - <artifactId>openid4java</artifactId> - <version>1.0.0</version> - </dependency> - </dependencies> </profile> </profiles>