-
Notifications
You must be signed in to change notification settings - Fork 14
/
build.gradle
30 lines (28 loc) · 1.02 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
buildscript {
ext {
soapUIVersion = '5.3.0'
jgoodiesBindingVersion = '2.0.1'
jgoodiesFormsVersion = '1.0.7'
jgoodiesLooksVersion = '2.2.0'
gradleApiVersion = 2.12
projectUrl = 'https://github.com/byte-shifter-ltd/soapui-gradle-plugin'
pluginDescription = 'Gradle plugin for running SoapUI test projects using testrunner'
}
apply from: "$rootDir/gradle/repositories.gradle"
}
plugins {
id 'idea'
id 'groovy'
id 'jacoco'
id 'com.github.kt3k.coveralls' version '2.8.1'
id 'com.gradle.plugin-publish' version '0.10.0'
id 'com.github.hierynomus.license' version '0.14.0'
}
apply from: "$rootDir/gradle/repositories.gradle"
apply from: "$rootDir/gradle/compileGroovy.gradle"
apply from: "$rootDir/gradle/integTest.gradle"
apply from: "$rootDir/gradle/codenarc.gradle"
apply from: "$rootDir/gradle/jacoco.gradle"
apply from: "$rootDir/gradle/license.gradle"
apply from: "$rootDir/gradle/pluginPortal.gradle"
apply from: "$rootDir/gradle/soapUIPlugin.gradle"