-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
47 lines (40 loc) · 1.1 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
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.9.7"
}
}
apply plugin: 'groovy'
apply plugin: "com.gradle.plugin-publish"
ext {
aetherVersion = '1.1.0'
}
repositories {
jcenter()
}
dependencies {
compile gradleApi()
compile localGroovy()
compile 'org.apache.maven:maven-aether-provider:3.3.9'
compile "org.eclipse.aether:aether-connector-basic:${aetherVersion}"
compile "org.eclipse.aether:aether-transport-http:${aetherVersion}"
compile "org.eclipse.aether:aether-transport-file:${aetherVersion}"
}
pluginBundle {
website = 'https://github.com/SetoKaiba/aether-gradle-plugin'
vcsUrl = 'https://github.com/SetoKaiba/aether-gradle-plugin'
description = 'Gradle Aether Plugin'
tags = ['dependencies', 'dependency', 'maven', 'aether']
plugins {
aetherPlugin {
id = 'co.kaiba.gradle.aether'
displayName = 'Gradle Greeting plugin'
}
}
}
group 'co.kaiba.gradle'
version '1.0'