forked from jochenseeber/gradle-wsimport-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
49 lines (41 loc) · 1.52 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
47
48
49
buildscript {
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath group: "me.seeber.gradle", name: "gradle-bintray-config", version: "1.1.1"
classpath group: "me.seeber.gradle", name: "gradle-license-config", version: "1.1.1"
classpath group: "me.seeber.gradle", name: "gradle-github-config", version: "1.1.1"
classpath group: "me.seeber.gradle", name: "gradle-plugin-publish-config", version: "1.1.1"
classpath group: "me.seeber.gradle", name: "gradle-project-config", version: "1.1.1"
}
}
version = "1.1.1"
group = "me.seeber.gradle"
description = "Run wsimport on WSDL files to generate Java code required to access web services"
apply plugin: "me.seeber.distribution.bintray"
apply plugin: "me.seeber.distribution.gradle-plugin"
apply plugin: "me.seeber.distribution.maven"
apply plugin: "me.seeber.ide.eclipse"
apply plugin: "me.seeber.project.gradle-plugin"
apply plugin: "me.seeber.repository.github"
apply plugin: "me.seeber.setup.license"
apply plugin: "me.seeber.validation.checkstyle"
model {
projectConfig {
organization.name = "Jochen Seeber"
inceptionYear = 2016
license.id = "BSD 2-Clause"
}
githubConfig { user = "jochenseeber" }
}
dependencies {
compile(group: "com.google.guava", name: "guava", version: "21.0")
}
pluginBundle {
tags = ["soap", "wsdl", "wsimport"]
plugins { wsimportPlugin.id = "me.seeber.wsimport" }
}