-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
46 lines (37 loc) · 1.44 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
plugins {
id 'groovy-base'
id "com.gradle.plugin-publish" version "1.2.0"
}
repositories {
jcenter()
}
dependencies {
// Version is also defined in WsImportPlugin
implementation group: 'com.sun.xml.ws', name: 'jaxws-tools', version: '3.0.1'
implementation group: 'jakarta.xml.bind', name: 'jakarta.xml.bind-api', version: '3.0.1'
implementation group: 'jakarta.xml.ws', name: 'jakarta.xml.ws-api', version: '3.0.1'
implementation group: 'jakarta.jws', name: 'jakarta.jws-api', version: '3.0.0'
implementation gradleApi()
testImplementation group: 'org.spockframework', name:'spock-core', version:'2.3-groovy-3.0'
}
group = "uk.co.boothen.gradle"
version = "${pluginVersion}"
gradlePlugin {
website = "https://github.com/boothen/gradle-wsimport"
vcsUrl = "https://github.com/boothen/gradle-wsimport"
description = "Gradle Plugin to wrap the Ant Task WSImport. Allowing easier configuration."
plugins {
wsImportPlugin {
id = "uk.co.boothen.gradle.wsimport"
implementationClass = "uk.co.boothen.gradle.wsimport.WsImportPlugin"
displayName = "WsImport plugin"
description = "Yet another WsImport Gradle plugin - requires Java 11 and Gradle 6.0 or greater."
tags.addAll('wsimport')
}
}
}
tasks.withType(JavaCompile) {
sourceCompatibility = "${javacVersion}"
targetCompatibility = "${javacVersion}"
options.encoding = 'UTF-8'
}