arothian / gradle-wsimport-plugin

Generate JAX-RS code from WSDL files with Gradle

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gradle wsimport Plugin

This is a plugin to run wsimport on WSDL files to generate the Java code required to access a web service (aka the really comprehensibly named "JAX-WS portable artifacts" ;-).

With this plugin, you can create builds that do not require a network connection to download WSDL files during build time. Instead, you can use a separate download task to update the local WSDL files, so everything required to build is availably locally.

Applying the plugin

Gradle 2.1 and higher

plugins {
    id 'me.seeber.github.gradle-wsimport-plugin' version '0.1.1'
}

Gradle 1.x and 2.0

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'me.seeber.github.gradle-wsimport-plugin:0.1.1'
    }
}

apply plugin: 'me.seeber.wsimport'

Usage

The plugin will automatically process all WSDL files found in src/main/wsdl. This works for all source sets, so files in src/test/wsdl and any other source set you define will also be processed.

The package name for the generated Java classes will be determined by the subdirectory of the WSDL file, e.g. for src/main/wsdl/com/company/boringenterpriseservice.wsdl the plugin will use the package name com.company.

Currently there are no configuration options.

Downloading the WSDLs

You can use the download plugin to download the WSDLs. Here's an example from the demo projects:

plugins { id "de.undercouch.download" version "1.2" }

import de.undercouch.gradle.tasks.download.Download

task downloadWsdl(type: Download) {
    description 'Download WSDL'
    src 'http://www-inf.int-evry.fr/cours/WebServices/TP_BPEL/files/PingPong.wsdl'
    dest 'src/main/wsdl/me/seeber/gradle/wsimport/demo/hello/client/PingPong.wsdl'
}

Then you can update the local WSDL file with

# gradle downloadWsdl

Examples

See the projects in the demo folder.

License

This plugin is licensed under the BSD 2-Clause license.

About

Generate JAX-RS code from WSDL files with Gradle

License:BSD 2-Clause "Simplified" License


Languages

Language:Groovy 66.7%Language:Java 33.3%