-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
47 lines (39 loc) · 1.24 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
plugins {
id "com.gradle.plugin-publish" version "0.16.0"
id "java-gradle-plugin"
id 'maven-publish'
}
apply plugin: 'groovy'
apply plugin: 'maven-publish'
dependencies
{
implementation gradleApi()
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.4'
implementation group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.5.4'
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
implementation group: 'commons-httpclient', name: 'commons-httpclient', version: '3.1'
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
}
repositories
{
mavenLocal()
mavenCentral()
jcenter()
}
group = 'com.qmetry'
version = '1.6'
gradlePlugin {
plugins {
qtmGradlePlugin{
id = 'com.qmetry.QTMGradlePlugin'
description = 'Ship high quality products, faster by linking automated test results from Gradle to QMetry Test Management.'
displayName = 'QMetry Test Management Plugin'
implementationClass = 'com.qmetry.QTMGradlePlugin'
}
}
}
pluginBundle {
website = 'https://www.qmetry.com/'
vcsUrl = 'https://github.com/qmetry/qmetry-test-management-gradle-plugin.git'
tags = ['test', 'automation', 'qmetry', 'qtm']
}