Skip to content
This repository has been archived by the owner on Nov 18, 2021. It is now read-only.

New one... #27

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

group = "com.mkring.wildlydeplyplugin"
version = "0.3.0"
version = "0.3.1"

plugins {
kotlin("jvm") version "1.2.61"
Expand Down
2 changes: 1 addition & 1 deletion integration/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.3.21"
id("com.mkring.wildlydeplyplugin.deploy-wildfly-plugin") version "0.3.0"
id("com.mkring.wildlydeplyplugin.deploy-wildfly-plugin") version "0.3.1"
war
}
buildscript {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ open class DeployWildflyPlugin : Plugin<Project> {
}

open class DeployWildflyTask : DefaultTask() {
val log = LoggerFactory.getLogger(DeployWildflyTask::class.java)

private val log = LoggerFactory.getLogger(DeployWildflyTask::class.java)

@InputFile
val file: RegularFileProperty = project.objects.fileProperty()
Expand Down