gradle-jaxws-plugin

Gradle JAX-WS plugin

License

License

Categories

Categories

Gradle Build Tools
GroupId

GroupId

eu.schnuckelig.gradle
ArtifactId

ArtifactId

gradle-jaxws-plugin
Last Version

Last Version

1.0.2
Release Date

Release Date

Type

Type

jar
Description

Description

gradle-jaxws-plugin
Gradle JAX-WS plugin
Project URL

Project URL

https://github.com/tklein/gradle-jaxws-plugin
Source Code Management

Source Code Management

https://github.com/tklein/gradle-jaxws-plugin

Download gradle-jaxws-plugin

How to add to project

<!-- https://jarcasting.com/artifacts/eu.schnuckelig.gradle/gradle-jaxws-plugin/ -->
<dependency>
    <groupId>eu.schnuckelig.gradle</groupId>
    <artifactId>gradle-jaxws-plugin</artifactId>
    <version>1.0.2</version>
</dependency>
// https://jarcasting.com/artifacts/eu.schnuckelig.gradle/gradle-jaxws-plugin/
implementation 'eu.schnuckelig.gradle:gradle-jaxws-plugin:1.0.2'
// https://jarcasting.com/artifacts/eu.schnuckelig.gradle/gradle-jaxws-plugin/
implementation ("eu.schnuckelig.gradle:gradle-jaxws-plugin:1.0.2")
'eu.schnuckelig.gradle:gradle-jaxws-plugin:jar:1.0.2'
<dependency org="eu.schnuckelig.gradle" name="gradle-jaxws-plugin" rev="1.0.2">
  <artifact name="gradle-jaxws-plugin" type="jar" />
</dependency>
@Grapes(
@Grab(group='eu.schnuckelig.gradle', module='gradle-jaxws-plugin', version='1.0.2')
)
libraryDependencies += "eu.schnuckelig.gradle" % "gradle-jaxws-plugin" % "1.0.2"
[eu.schnuckelig.gradle/gradle-jaxws-plugin "1.0.2"]

Dependencies

test (1)

Group / Artifact Type Version
junit : junit jar 4.11

Project Modules

There are no modules declared in this project.

Build Status

gradle-jaxws-plugin

Gradle plugin to create Java classes from a WSDL using JAX-WS. This plugin was heavily influenced by the gradle-jaxb-plugin.

Installation

The plugin is available on Maven Central now, so you simply have to add it to your build dependencies as outlined in the usage section.

Usage

You can just use the jaxws plugin like any other plugin in your build file. The example below uses a url from the web, but there is no reason why you cannot reference a wsdl from the local project.

buildscript {
	repositories {
		mavenCentral()
	}
	dependencies {
		classpath "eu.schnuckelig.gradle:gradle-jaxws-plugin:1.0"
	}
}

apply plugin: 'maven'
apply plugin: 'jaxws'

jaxws {
	packageName = 'eu.schnuckelig.gradle.test'
	wsdlURL = 'http://wsf.cdyne.com/WeatherWS/Weather.asmx?WSDL'
}

repositories {
	mavenCentral()
}

Versions

Version
1.0.2
1.0.1
1.0