-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (28 loc) · 873 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
plugins {
id 'java'
}
apply plugin: 'application'
group 'com.baitforbyte'
version '1.0-SNAPSHOT'
mainClassName = "com.baitforbyte.networkhw1.EntryPoint"
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.api-client:google-api-client:1.23.0'
implementation 'com.google.oauth-client:google-oauth-client-jetty:1.23.0'
implementation 'com.google.apis:google-api-services-drive:v3-rev110-1.23.0'
implementation 'com.google.http-client:google-http-client:1.23.0'
implementation 'com.google.http-client:google-http-client-jackson2:1.23.0'
testImplementation('org.junit.jupiter:junit-jupiter-api:5.1.0')
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.1.0')
}
run {
standardInput = System.in
}
run {
if ( project.hasProperty("args") ) {
args Eval.me(args)
}
}