Skip to content
This repository was archived by the owner on Nov 24, 2018. It is now read-only.

Commit d2f7821

Browse files
committed
Build script
Forgot the build.gradle *facepalm*
1 parent b87a264 commit d2f7821

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

build.gradle

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
plugins {
2+
id 'java'
3+
id 'com.github.johnrengelman.shadow' version '1.2.4'
4+
}
5+
group 'vHackAPI'
6+
version '1.0-SNAPSHOT'
7+
sourceCompatibility = 1.8
8+
9+
repositories {
10+
mavenCentral()
11+
}
12+
13+
dependencies {
14+
compile 'com.squareup.okhttp3:okhttp:3.9.1'
15+
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
16+
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.6.1'
17+
compile group: 'org.json', name: 'json', version: '20090211'
18+
compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.1'
19+
compileOnly 'org.projectlombok:lombok:1.16.20'
20+
}
21+
22+
shadowJar.destinationDir = file("/build/libs")
23+
shadowJar.archiveName = 'vHackOSAPI.jar'

0 commit comments

Comments
 (0)