-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
98 lines (87 loc) · 3.61 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<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>
<!-- ================================================================ -->
<!-- general information -->
<!-- ================================================================ -->
<groupId>com.linecorp.sample.login</groupId>
<artifactId>line-login-starter</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>line-login-starter</name>
<url>https://github.com/line/line-login-starter</url>
<properties>
<java.version>1.8</java.version>
<retrofit2.groupId>com.squareup.retrofit2</retrofit2.groupId>
<retrofit2.version>2.5.0</retrofit2.version>
</properties>
<!-- ================================================================ -->
<!-- common settings -->
<!-- ================================================================ -->
<parent>
<!-- use license 'The Apache License, Version 2.0' -->
<!-- https://github.com/spring-projects/spring-boot/blob/master/LICENSE.txt -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.7.RELEASE</version>
</parent>
<!-- ================================================================ -->
<!-- dependency -->
<!-- ================================================================ -->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- template engine -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- http client -->
<!-- use license 'The Apache License, Version 2.0' -->
<!-- https://github.com/square/retrofit/blob/master/LICENSE.txt -->
<dependency>
<groupId>${retrofit2.groupId}</groupId>
<artifactId>retrofit</artifactId>
<version>${retrofit2.version}</version>
</dependency>
<dependency>
<groupId>${retrofit2.groupId}</groupId>
<artifactId>converter-gson</artifactId>
<version>${retrofit2.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
<version>3.12.0</version>
</dependency>
<!-- use license 'The Apache License, Version 2.0' -->
<!-- https://github.com/google/gson/blob/master/LICENSE -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.6.2</version>
</dependency>
<!-- JWT library -->
<!-- use MIT License -->
<!-- https://github.com/auth0/java-jwt/blob/master/LICENSE -->
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
<version>3.2.0</version>
</dependency>
</dependencies>
<!-- ================================================================ -->
<!-- plugin settings -->
<!-- ================================================================ -->
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>