-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (38 loc) · 1.09 KB
/
build.gradle
File metadata and controls
47 lines (38 loc) · 1.09 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
44
45
46
47
plugins {
id 'java'
// Deprecated Gradle features were used in this build,
// making it incompatible with Gradle 7.0.
// id 'maven-publish'
// JitPack only supports this
id 'maven'
}
group 'com.github.dbchar'
version '0.0.2'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
repositories {
jcenter()
mavenCentral()
}
dependencies {
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'org.json:json:20200518'
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:1.0.2'
implementation 'commons-codec:commons-codec:1.14'
implementation 'org.xerial:sqlite-jdbc:3.31.1'
testImplementation "org.junit.jupiter:junit-jupiter-api:5.6.2"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.6.2"
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes(
'Implementation-Title': project.name,
'Implementation-Version': project.version
)
}
}
wrapper { gradleVersion = '6.5' }