Skip to content

Commit

Permalink
Fix failing build due missing binName
Browse files Browse the repository at this point in the history
  • Loading branch information
neworld committed Nov 13, 2018
1 parent 5fafec8 commit 1bedad0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### v0.5.1

- Fix regression due missing binName

### v0.5.0

- Support custom bin name
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "lt.neworld.gradle"
version = "0.5.0"
version = "0.5.1"

repositories {
maven {
Expand Down
2 changes: 1 addition & 1 deletion samples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {

dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "lt.neworld.gradle:gradle-jdeploy-plugin:0.5.0"
classpath "lt.neworld.gradle:gradle-jdeploy-plugin:0.5.1"
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import org.gradle.api.Project
import org.gradle.api.tasks.Input
import org.gradle.api.tasks.InputFile
import org.gradle.api.tasks.Nested
import org.gradle.api.tasks.Optional
import org.gradle.kotlin.dsl.invoke
import java.io.File

Expand All @@ -23,7 +24,7 @@ class JDeployExtension(private val project: Project) {
var name: String? = null
@get:Input
var repository: String = ""
@get:Input
@get:[Input Optional]
var binName: String? = null
var jar: File? = null

Expand Down

0 comments on commit 1bedad0

Please sign in to comment.