-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (33 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
29
30
31
32
33
34
35
36
37
38
apply plugin: "application"
mainClassName = "Main"
run {
standardInput = System.in
}
jar {
manifest {
attributes(
'Main-Class': 'Main'
)
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
ext.notionSdkVersion = "0.1.9"
dependencies {
implementation group: 'junit', name: 'junit', version: '4.12'
implementation 'de.codeshelf.consoleui:consoleui:0.0.13'
implementation("com.github.seratch:notion-sdk-jvm-okhttp4:${notionSdkVersion}")
implementation("com.github.seratch:notion-sdk-jvm-okhttp3:${notionSdkVersion}")
implementation "com.squareup.okhttp3:okhttp-urlconnection:3.14.9"
implementation("com.github.seratch:notion-sdk-jvm-core:${notionSdkVersion}")
implementation("com.github.seratch:notion-sdk-jvm-slf4j:${notionSdkVersion}") // slf4j-api 1.7
implementation("org.slf4j:slf4j-simple:1.7.30")
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.0.1'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.0'
}