|
| 1 | +<?xml version="1.0"?> |
| 2 | +<project |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 4 | + xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <groupId>authentication</groupId> |
| 7 | + <artifactId>authentication-service</artifactId> |
| 8 | + <version>0.0.1-SNAPSHOT</version> |
| 9 | + <name>Authentication Service</name> |
| 10 | + <url>http://maven.apache.org</url> |
| 11 | + |
| 12 | + <parent> |
| 13 | + <groupId>org.springframework.boot</groupId> |
| 14 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 15 | + <version>1.5.7.RELEASE</version> |
| 16 | + </parent> |
| 17 | + |
| 18 | + <properties> |
| 19 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 20 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 21 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 22 | + </properties> |
| 23 | + |
| 24 | + <dependencies> |
| 25 | + |
| 26 | + <!-- Spring Boot --> |
| 27 | + <dependency> |
| 28 | + <groupId>org.springframework.boot</groupId> |
| 29 | + <artifactId>spring-boot-starter-web</artifactId> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>org.springframework.boot</groupId> |
| 33 | + <artifactId>spring-boot-starter-security</artifactId> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>org.springframework.security.oauth</groupId> |
| 37 | + <artifactId>spring-security-oauth2</artifactId> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>org.springframework.boot</groupId> |
| 41 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 42 | + </dependency> |
| 43 | + |
| 44 | + <!-- Spring Boot jakson depenedcy issue https://dzone.com/articles/jackson-dependency-issue-in-spring-boot-with-maven--> |
| 45 | + <dependency> |
| 46 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 47 | + <artifactId>jackson-databind</artifactId> |
| 48 | + <version>2.7.4</version> |
| 49 | + <exclusions> |
| 50 | + <exclusion> |
| 51 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 52 | + <artifactId>jackson-core</artifactId> |
| 53 | + </exclusion> |
| 54 | + <exclusion> |
| 55 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 56 | + <artifactId>jackson-annotations</artifactId> |
| 57 | + </exclusion> |
| 58 | + </exclusions> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 62 | + <artifactId>jackson-core</artifactId> |
| 63 | + <version>2.7.4</version> |
| 64 | + </dependency> |
| 65 | + <dependency> |
| 66 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 67 | + <artifactId>jackson-annotations</artifactId> |
| 68 | + <version>2.7.4</version> |
| 69 | + </dependency> |
| 70 | + |
| 71 | + <!-- https://mvnrepository.com/artifact/org.springframework.security/spring-security-jwt --> |
| 72 | + <dependency> |
| 73 | + <groupId>org.springframework.security</groupId> |
| 74 | + <artifactId>spring-security-jwt</artifactId> |
| 75 | + <version>1.0.8.RELEASE</version> |
| 76 | + </dependency> |
| 77 | + |
| 78 | + <dependency> |
| 79 | + <groupId>org.hibernate</groupId> |
| 80 | + <artifactId>hibernate-core</artifactId> |
| 81 | + <version>5.2.2.Final</version> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>org.hibernate</groupId> |
| 85 | + <artifactId>hibernate-entitymanager</artifactId> |
| 86 | + <version>5.2.2.Final</version> |
| 87 | + </dependency> |
| 88 | + <!-- https://mvnrepository.com/artifact/javassist/javassist --> |
| 89 | + <dependency> |
| 90 | + <groupId>javassist</groupId> |
| 91 | + <artifactId>javassist</artifactId> |
| 92 | + <version>3.3</version> |
| 93 | + </dependency> |
| 94 | + |
| 95 | + |
| 96 | + <dependency> |
| 97 | + <groupId>com.h2database</groupId> |
| 98 | + <artifactId>h2</artifactId> |
| 99 | + <scope>runtime</scope> |
| 100 | + </dependency> |
| 101 | + |
| 102 | + <!-- Swagger-ui --> |
| 103 | + <dependency> |
| 104 | + <groupId>io.springfox</groupId> |
| 105 | + <artifactId>springfox-swagger2</artifactId> |
| 106 | + <version>2.8.0</version> |
| 107 | + </dependency> |
| 108 | + <dependency> |
| 109 | + <groupId>io.springfox</groupId> |
| 110 | + <artifactId>springfox-swagger-ui</artifactId> |
| 111 | + <version>2.8.0</version> |
| 112 | + </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>io.springfox</groupId> |
| 115 | + <artifactId>springfox-bean-validators</artifactId> |
| 116 | + <version>2.8.0</version> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <artifactId>guava</artifactId> |
| 120 | + <groupId>com.google.guava</groupId> |
| 121 | + <type>jar</type> |
| 122 | + <version>18.0</version> |
| 123 | + </dependency> |
| 124 | + |
| 125 | + <!-- test --> |
| 126 | + <dependency> |
| 127 | + <groupId>org.springframework.boot</groupId> |
| 128 | + <artifactId>spring-boot-starter-test</artifactId> |
| 129 | + <scope>test</scope> |
| 130 | + </dependency> |
| 131 | + <dependency> |
| 132 | + <groupId>org.mockito</groupId> |
| 133 | + <artifactId>mockito-all</artifactId> |
| 134 | + <version>1.9.5</version> |
| 135 | + <scope>test</scope> |
| 136 | + </dependency> |
| 137 | + |
| 138 | + </dependencies> |
| 139 | + |
| 140 | + <build> |
| 141 | + <pluginManagement> |
| 142 | + <plugins> |
| 143 | + <plugin> |
| 144 | + <groupId>org.springframework.boot</groupId> |
| 145 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 146 | + </plugin> |
| 147 | + </plugins> |
| 148 | + </pluginManagement> |
| 149 | + </build> |
| 150 | + |
| 151 | + |
| 152 | + |
| 153 | +</project> |
0 commit comments