-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·43 lines (35 loc) · 1.1 KB
/
build.gradle
File metadata and controls
executable file
·43 lines (35 loc) · 1.1 KB
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
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '4.0.4'
}
group 'me.legit'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava {
options.encoding = 'UTF-8'
options.compilerArgs += ['-Xlint:unchecked', '-Xlint:deprecation']
}
mainClassName = 'me.legit.APICore'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.nulab-inc:zxcvbn:1.2.7'
implementation 'com.google.firebase:firebase-admin:6.8.1'
implementation 'org.mongodb:mongo-java-driver:3.4.1'
implementation 'io.javalin:javalin:3.0.0'
implementation 'com.squareup.okhttp3:okhttp:3.14.2'
implementation 'commons-validator:commons-validator:1.7'
implementation 'io.lettuce:lettuce-core:5.1.7.RELEASE'
implementation 'io.sentry:sentry:1.7.22'
implementation 'org.slf4j:slf4j-simple:1.7.25'
implementation 'org.json:json:20180813'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.nimbusds:nimbus-jose-jwt:2.10.1'
testImplementation 'junit:junit:4.12'
}
task stage {
dependsOn shadowJar
}