-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (40 loc) · 1.2 KB
/
build.gradle
File metadata and controls
49 lines (40 loc) · 1.2 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
48
49
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:5.2.0'
}
}
plugins {
id 'com.github.johnrengelman.shadow' version '5.2.0'
id 'java'
}
repositories {
mavenCentral()
}
group 'com.drextended.gppublisher'
version '1.0'
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
mainClassName = "com.drextended.gppublisher.Main"
shadowJar {
destinationDir = file("$rootDir/out/")
baseName = 'gppublisher'
classifier = null
version = "v1"
}
dependencies {
//implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "com.beust:jcommander:1.48"
implementation "com.google.apis:google-api-services-androidpublisher:v3-rev103-1.25.0"
implementation "com.google.oauth-client:google-oauth-client-java6:1.25.0"
implementation "com.google.oauth-client:google-oauth-client-jetty:1.25.0"
implementation "javax.inject:javax.inject:1"
implementation "javax.ws.rs:jsr311-api:1.1.1"
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'commons-io:commons-io:2.5'
}