-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
49 lines (42 loc) · 984 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
49
plugins {
id 'java-gradle-plugin'
id 'maven-publish'
id 'idea'
id "com.gradle.plugin-publish" version "0.20.0"
}
group = 'com.katalon.gradle.plugin'
version = '0.1.2'
publishing {
repositories {
maven {
url "../consuming/maven-repo"
}
}
}
pluginBundle {
website = 'https://www.katalon.com/'
vcsUrl = 'https://github.com/katalon-studio/gradle-plugin'
tags = ['katalon']
plugins {
katalon {
website = 'https://www.katalon.com/'
vcsUrl = 'https://github.com/katalon-studio/gradle-plugin'
displayName = 'Katalon Gradle Plugin'
description = 'Katalon Gradle Plugin'
}
}
}
gradlePlugin {
plugins {
katalon {
id = 'com.katalon.gradle-plugin'
implementationClass = 'com.katalon.gradle.plugin.KatalonGradlePlugin'
}
}
}
repositories {
maven { url 'https://plugins.gradle.org/m2/' }
}
dependencies {
implementation 'gradle.plugin.com.github.johnrengelman:shadow:7.1.2'
}