Ingwersaft / wildfly-deploy-gradle-plugin

Gradle Plugin for deploying Files to Wildfly
https://plugins.gradle.org/plugin/com.mkring.wildlydeplyplugin.deploy-wildfly-plugin
GNU General Public License v3.0
10 stars 11 forks source link

Could not set unknown property 'domainServerGroup' #23

Closed vipivoxa closed 4 years ago

vipivoxa commented 4 years ago

Hi, Trying to deploy to a domain server group, getting the following error:
Could not set unknown property 'domainServerGroup' for task ':deployDomain' of type com.mkring.wildlydeplyplugin.DeployWildflyTask.

is a server group deployment supported like it is described in a readme?

Ingwersaft commented 4 years ago

Mhm, this was contributed by #20 , never used it myself.

Could not set unknown property sound's like you're running an old version of the plugin, which version are you using?

vipivoxa commented 4 years ago

used the one what is mentioned in the current readme.md example:

id "com.mkring.wildlydeplyplugin.deploy-wildfly-plugin" version "0.2.10"

and

task deployDomain(type: DeployWildflyTask) {

    host = project.findProperty("deployHost")
    port = Integer.parseInt(project.findProperty("deployPort"))
    user = project.findProperty("deployUser")
    password =  project.findProperty("deployPwd")
    deploymentName = project.name
    runtimeName = "test-1"
    file = "build/libs/${rootProject.name}-${version}.war"
    // redeploy if artifact with same name already deployed
    undeployBeforehand = true
    // server group of domain mode
    domainServerGroup = "test-server-group"
    // ask to restart servers after deploy instead of only reload them
    restart = true
    reload = false
}
Ingwersaft commented 4 years ago

The readme isn't updated, use the latest version from the gradle plugins portal

vipivoxa commented 4 years ago

thanks! worked with a version '0.3.0' and a minimum gradle version 5. though with some repeatable warn messages about cli cfg not found,

`$ ./gradlew deployDomain Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8

Task :deployDomain WARN: can't find jboss-cli.xml. Using default configuration values. WARN: can't find jboss-cli.xml. Using default configuration values.

BUILD SUCCESSFUL in 5s 1 actionable task: 1 executed`