Skip to content

Commit

Permalink
fixed gradle dist builds
Browse files Browse the repository at this point in the history
  • Loading branch information
BitBuf committed Apr 30, 2020
1 parent 7da63d5 commit b438059
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,24 @@ repositories {

dependencies {
implementation 'com.github.Steveice10:MCProtocolLib:4b29ec1'

implementation files(urlFile("https://github.com/EmotionalLove/SimpleEventSystem/releases/download/1.2.1/SimpleEventSystem.jar", "SimpleEventSystem"))
implementation files(urlFile("https://github.com/EmotionalLove/SimpleCommandSystem/releases/download/1.0.2/SimpleCommandSystem.jar", "SimpleCommandSystem"))

implementation group: 'org.yaml', name: 'snakeyaml', version: '1.23'
implementation 'org.jline:jline:3.9.0'
}

build.dependsOn(shadowJar)

jar {
manifest {
attributes(
'Main-Class': 'dev.dewy.reborn.REborn'
)
}
}

shadowJar {
classifier = "dist"

Expand Down

0 comments on commit b438059

Please sign in to comment.