forked from orctom/was-gradle-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (39 loc) · 892 Bytes
/
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
plugins {
id "com.gradle.plugin-publish" version "0.9.1"
}
plugins {
id 'net.researchgate.release' version '2.3.4'
}
group 'com.orctom.gradle.was'
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'idea'
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile gradleApi()
compile localGroovy()
compile 'com.orctom.was:was-util:1.1.3.2'
testCompile 'junit:junit:4.12'
}
idea {
module {
downloadSources = true
}
}
pluginBundle {
website = 'https://github.com/orctom/was-gradle-plugin'
vcsUrl = 'https://github.com/orctom/was-gradle-plugin'
description = 'Deploy artifact to one or more, local or remote WebSphere Application Server'
tags = ['websphere', 'was']
plugins {
wasPlugin {
id = 'com.orctom.was'
displayName = 'WAS (WabSphere) Deploy Plugin'
}
}
}