-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
47 lines (40 loc) · 985 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
plugins {
id 'java-gradle-plugin'
id 'groovy'
id "com.gradle.plugin-publish" version "0.10.0"
}
group 'org.m2ci.msp'
version '0.2-SNAPSHOT'
description 'Easily resolve GitHub release assets as dependencies in Gradle'
gradlePlugin {
plugins {
githubIvyRepoPlugin {
id = 'org.m2ci.msp.github-ivy-repo'
implementationClass = 'org.m2ci.msp.github.GithubIvyRepoPlugin'
}
}
}
repositories {
jcenter()
}
dependencies {
testCompile group: 'org.testng', name: 'testng', version: '6.14.3'
}
test {
useTestNG()
testLogging {
exceptionFormat 'full'
}
}
pluginBundle {
def url = 'https://github.com/m2ci-msp/gradle-github-ivy-repo-plugin'
website = url
vcsUrl = url
description = project.description
tags = ['github', 'ivy', 'repositories', 'dependencies']
plugins {
githubIvyRepoPlugin {
displayName = 'Gradle GitHub Ivy repository plugin'
}
}
}