-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (32 loc) · 942 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
40
41
plugins {
id 'java'
id 'idea'
id 'org.springframework.boot' version '2.2.6.RELEASE'
id "io.spring.dependency-management" version "1.0.6.RELEASE"
}
group 'com.alistairj'
version '0.1.0'
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
bootRun {
if (project.hasProperty('args')) {
args project.args.split(',')
}
systemProperties = System.properties
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'com.google.api-client:google-api-client:1.23.0'
compile 'com.google.oauth-client:google-oauth-client-jetty:1.23.0'
compile 'com.google.apis:google-api-services-youtube:v3-rev222-1.25.0'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
compile 'junit:junit:4.12'
}
test {
useJUnitPlatform()
}