-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·42 lines (33 loc) · 955 Bytes
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
plugins {
id 'java'
id 'war'
id 'io.freefair.lombok' version '6.6-rc1'
}
group 'com.tplaymeow'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
ext {
junitVersion = '5.8.2'
}
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
dependencies {
implementation('io.jsonwebtoken:jjwt:0.2')
implementation("org.mindrot:jbcrypt:0.4")
implementation('org.postgresql:postgresql:42.1.4')
compileOnly('javax.enterprise:cdi-api:2.0.SP1')
compileOnly('javax.ejb:javax.ejb-api:3.2.2')
compileOnly('javax.ws.rs:javax.ws.rs-api:2.1.1')
compileOnly('javax.servlet:javax.servlet-api:4.0.1')
implementation('org.hibernate:hibernate-core:5.6.1.Final')
testImplementation("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
}
test {
useJUnitPlatform()
}