-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
39 lines (34 loc) · 1.04 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
39
plugins {
id 'org.springframework.boot' version '2.6.2'
id 'org.jetbrains.kotlin.jvm' version '1.6.10'
id 'java'
}
group 'youtubecheckin'
version '1.0'
repositories {
mavenCentral()
}
bootJar {
archiveName = 'YouTubeCheckin.jar'
doLast {
copy {
from 'build/libs/YouTubeCheckin.jar'
into '.'
}
}
}
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
implementation 'org.jetbrains.kotlin:kotlin-reflect'
implementation 'org.springframework.boot:spring-boot-autoconfigure:2.6.1'
implementation 'org.springframework.boot:spring-boot-starter-web:2.6.1'
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb:2.6.1'
implementation 'org.json:json:20211205'
implementation 'com.google.protobuf:protobuf-java:3.19.1'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation 'org.apache.httpcomponents:httpcore:4.4.15'
implementation 'org.bouncycastle:bctls-jdk15on:1.57'
}
test {
useJUnitPlatform()
}