搜索Gradle插件

版本 2.0.2(最新版)

2.0.2

创建于2023年6月22日。

变更:- 修复了从sourcesJar中wsdl2java任务依赖项缺失的问题

使用插件DSL

plugins {
  id("com.github.bjornvester.wsdl2java") version "2.0.2"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.bjornvester:wsdl2java-gradle-plugin:2.0.2")
  }
}

apply(plugin = "com.github.bjornvester.wsdl2java")

使用插件DSL

plugins {
  id "com.github.bjornvester.wsdl2java" version "2.0.2"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.bjornvester:wsdl2java-gradle-plugin:2.0.2"
  }
}

apply plugin: "com.github.bjornvester.wsdl2java"

了解如何将插件应用于子项目