-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
28 lines (25 loc) · 1.18 KB
/
build.gradle
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
plugins {
id 'org.springframework.boot' version '2.4.1'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
}
group = 'com.clickbait'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.10.7'
implementation group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.10.7'
implementation group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.10.7'
implementation group: 'com.google.guava', name: 'guava', version: '28.1-jre'
implementation group: 'org.postgresql', name: 'postgresql', version: '42.2.19'
implementation group: 'org.flywaydb', name: 'flyway-core', version: '7.7.3'
implementation group: 'org.aspectj', name: 'aspectjweaver', version: '1.9.6'
implementation group: 'org.hibernate', name: 'hibernate-validator', version: '7.0.1.Final'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.13'
}