-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
57 lines (48 loc) · 1.26 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
48
49
50
51
52
53
54
55
56
57
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.9.9"
}
}
apply plugin: 'groovy'
apply plugin: 'maven-publish'
apply plugin: 'ivy-publish'
apply plugin: 'com.gradle.plugin-publish'
group = "com.github.mtatheonly"
version = "0.0.1"
dependencies {
compile gradleApi()
compile localGroovy()
compile "co.paralleluniverse:quasar-core:${property('quasar.core.version')}"
}
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
pluginBundle {
website = "https://github.com/mtatheonly/quasar-gradle-plugin"
vcsUrl = "https://github.com/mtatheonly/quasar-gradle-plugin"
description = "Plugin for Quasar instrumentor"
tags = ['quasar', 'instrumentation', 'gradle']
plugins {
quasarGradlePlugin {
id = 'com.github.mtatheonly.quasar-gradle-plugin'
displayName = 'Gradle Quasar Plugin'
}
}
}
publishing {
publications {
pluginPublication (MavenPublication) {
from components.java
groupId 'com.github.mtatheonly'
artifactId 'quasar-gradle-plugin'
version project.version
}
}
}