-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
56 lines (48 loc) · 1.15 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
plugins {
id 'groovy'
id 'maven-publish'
id 'java-gradle-plugin'
id 'com.gradle.plugin-publish' version '0.12.0'
}
group 'org.tabooproject.shrinkingkt'
version '1.0.6'
configurations {
embed
implementation.extendsFrom(embed)
}
repositories {
mavenCentral()
}
dependencies {
compile 'org.codehaus.groovy:groovy:2.5.13'
compile gradleApi()
compile localGroovy()
embed 'org.ow2.asm:asm:9.2'
embed 'org.ow2.asm:asm-commons:9.2'
embed 'com.google.code.gson:gson:2.8.7'
}
jar {
from(configurations.embed.collect { it.isDirectory() ? it : zipTree(it) })
}
pluginBundle {
website = 'https://github.com/TabooLib/shrinking-kotlin'
vcsUrl = 'https://github.com/TabooLib/shrinking-kotlin'
tags = ['taboolib', 'kotlin']
}
gradlePlugin {
plugins {
shrinkingkt {
id = 'org.tabooproject.shrinkingkt'
displayName = 'Shrinking Kotlin'
description = 'Shrinking Kotlin'
implementationClass = 'org.tabooproject.shrinkingkt.Plugin'
}
}
}
publishing {
repositories {
maven {
url = file("/Users/sky/Desktop/repo")
}
}
}