IntershopCommunicationsAG / jaxb-gradle-plugin

Gradle JAXB code generation plugin
Apache License 2.0
33 stars 15 forks source link

getResourceLock #54

Closed flyasky closed 1 year ago

flyasky commented 1 year ago

Could you please help me find a possible root cause?

FAILURE: Build failed with an exception.

* What went wrong:
org.gradle.internal.resources.SharedResource.getResourceLock(I)Lorg/gradle/internal/resources/ResourceLock;

My config build.gradle.kts

plugins {
    id("com.intershop.gradle.jaxb") version "5.1.0"
    id("java")
}

description = "Model"

jaxb {
    javaGen {
        create("m-sync") {
            schema = file("src/main/resources/wsdl/WSDL_Sync.wsdl")
            packageName = "net.generated.model.in"
            extension = true
        }
    }
}