Skip to content

Commit

Permalink
Add butler support (for itch.io)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ealrann committed Jun 19, 2019
1 parent 7e77117 commit c300a08
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ buildscript {
}
dependencies {
classpath "org.javamodularity:moduleplugin:1.5.0"
classpath "org.mini2Dx:butler:1.1.3"
}
}

Expand Down
18 changes: 18 additions & 0 deletions org.sheepy.vsand/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import org.gradle.internal.os.OperatingSystem
plugins {
id 'application'
id 'distribution'
id 'org.mini2Dx.butler'
id 'org.beryx.jlink' version '2.10.4'
}

Expand All @@ -16,6 +17,23 @@ jlink {
}
}


butler {
user = "ealrann"
game = "vsand"
userVersion = project.version

windows {
binDirectory = "$projectDir/build/image"
channel = "windows"
}
linux {
binDirectory = "$projectDir/build/image"
channel = "linux"
}
}


mainClassName = 'org.sheepy.vsand/org.sheepy.vsand.VSandApplicationLauncher'
jar {
manifest {
Expand Down

0 comments on commit c300a08

Please sign in to comment.