-
-
Save anonymous/d33a31ddc3ba84375cf3 to your computer and use it in GitHub Desktop.
spring oauth2 maven dependencies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.blabadi</groupId> | |
<artifactId>testoauth-server</artifactId> | |
<packaging>war</packaging> | |
<version>0.0.1-SNAPSHOT</version> | |
<name>testoauth Maven Webapp</name> | |
<url>http://maven.apache.org</url> | |
<properties> | |
<springframework.version>3.2.2.RELEASE</springframework.version> | |
<junit.version>4.10</junit.version> | |
<log4j.version>1.2.17</log4j.version> | |
<maven.compiler.source>1.6</maven.compiler.source> | |
<maven.compiler.target>1.6</maven.compiler.target> | |
<spring.security.version>3.1.3.RELEASE</spring.security.version> | |
<groupId>org.springframework.security.oauth</groupId> | |
<oauth2.version>1.0.0.RELEASE</oauth2.version> | |
<org.slf4j.version>1.6.1</org.slf4j.version> | |
</properties> | |
<dependencies> | |
<!--===================== Spring dependencies =======================--> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-context</artifactId> | |
<version>${springframework.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-orm</artifactId> | |
<version>${springframework.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-web</artifactId> | |
<version>${springframework.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-webmvc</artifactId> | |
<version>${springframework.version}</version> | |
</dependency> | |
<dependency> | |
<artifactId>spring-expression</artifactId> | |
<groupId>org.springframework</groupId> | |
<version>${springframework.version}</version> | |
</dependency> | |
<dependency> | |
<artifactId>spring-core</artifactId> | |
<groupId>org.springframework</groupId> | |
<version>${springframework.version}</version> | |
</dependency> | |
<dependency> | |
<artifactId>spring-aop</artifactId> | |
<groupId>org.springframework</groupId> | |
<version>${springframework.version}</version> | |
</dependency> | |
<!-- Spring AOP dependency --> | |
<dependency> | |
<groupId>cglib</groupId> | |
<artifactId>cglib</artifactId> | |
<version>2.2</version> | |
</dependency> | |
<dependency> | |
<artifactId>spring-tx</artifactId> | |
<groupId>org.springframework</groupId> | |
<version>${springframework.version}</version> | |
</dependency> | |
<dependency> | |
<artifactId>spring-beans</artifactId> | |
<groupId>org.springframework</groupId> | |
<version>${springframework.version}</version> | |
</dependency> | |
<!-- Spring Security --> | |
<dependency> | |
<groupId>org.springframework.security</groupId> | |
<artifactId>spring-security-core</artifactId> | |
<version>${spring.security.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.security</groupId> | |
<artifactId>spring-security-web</artifactId> | |
<version>${spring.security.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.security</groupId> | |
<artifactId>spring-security-config</artifactId> | |
<version>${spring.security.version}</version> | |
</dependency> | |
<!--========================== servlets api ======================--> | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>servlet-api</artifactId> | |
<version>2.3</version> | |
<scope>provided</scope> | |
</dependency> | |
<!--============================= Jackson ===========================--> | |
<dependency> | |
<groupId>org.codehaus.jackson</groupId> | |
<artifactId>jackson-mapper-asl</artifactId> | |
<version>1.8.3</version> | |
</dependency> | |
<!--============================ Logging ==========================--> | |
<!-- slf4j --> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-api</artifactId> | |
<version>1.7.5</version> | |
</dependency> | |
<dependency> | |
<groupId>ch.qos.logback</groupId> | |
<artifactId>logback-classic</artifactId> | |
<version>1.0.13</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>jcl-over-slf4j</artifactId> | |
<version>1.6.1</version> | |
</dependency> | |
<!-- Log4j slf4j impl | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-log4j12</artifactId> | |
<version>1.6.4</version> | |
<scope>runtime</scope> | |
</dependency> | |
--> | |
<!--======================= Testing libs ============================--> | |
<!-- JUnit testing framework --> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>${junit.version}</version> | |
<scope>test</scope> | |
</dependency> | |
<!-- spring test --> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-test</artifactId> | |
<version>${springframework.version}</version> | |
<scope>test</scope> | |
</dependency> | |
<!-- needed to get AOPs around the test cases --> | |
<dependency> | |
<groupId>cglib</groupId> | |
<artifactId>cglib-nodep</artifactId> | |
<version>2.2.2</version> | |
<scope>test</scope> | |
</dependency> | |
<!-- mocks lib --> | |
<dependency> | |
<groupId>org.mockito</groupId> | |
<artifactId>mockito-all</artifactId> | |
<version>1.9.5</version> | |
</dependency> | |
<!-- in memory db --> | |
<dependency> | |
<groupId>org.hsqldb</groupId> | |
<artifactId>hsqldb</artifactId> | |
<version>2.2.9</version> | |
<scope>test</scope> | |
</dependency> | |
<!--======================== hibernate =====================--> | |
<dependency> | |
<groupId>org.hibernate</groupId> | |
<artifactId>hibernate-entitymanager</artifactId> | |
<version>4.1.10.Final</version> | |
</dependency> | |
<!-- MySQL database driver --> | |
<dependency> | |
<groupId>mysql</groupId> | |
<artifactId>mysql-connector-java</artifactId> | |
<version>5.1.9</version> | |
</dependency> | |
<!-- OAuth 2.0 dependencies --> | |
<dependency> | |
<groupId>org.springframework.security.oauth</groupId> | |
<artifactId>spring-security-oauth2</artifactId> | |
<version>${oauth2.version}</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<finalName>testoauth-server</finalName> | |
</build> | |
</project> | |
<!-- | |
<dependencies> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>3.8.1</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
</project> | |
--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment