-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
39 lines (31 loc) · 867 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
plugins {
id 'application'
id 'com.diffplug.spotless' version '6.7.2'
id 'com.github.ben-manes.versions' version '0.42.0'
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'org.owasp.dependencycheck' version '7.1.1'
}
repositories {
mavenCentral()
}
apply from: "$rootDir/gradle/dependencies.gradle"
apply from: "$rootDir/gradle/resolveDependencies.gradle"
dependencies {
implementation libraries.b2Core
implementation libraries.b2HttpClient
implementation libraries.logbackClassic
implementation libraries.slf4jApi
}
mainClassName = 'com.github.azell.b2_cloud.Main'
spotless {
java {
googleJavaFormat()
}
}
tasks.withType(JavaCompile) {
options.compilerArgs << '-parameters'
options.deprecation = 'true'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
version = '1.0-dev'