forked from tbarker9/greeting-plugin-example
-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
35 lines (30 loc) · 837 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
plugins {
id "org.jetbrains.kotlin.jvm" version "1.3.41"
id "java-gradle-plugin"
id "org.gradle.kotlin.kotlin-dsl" version "2.1.6"
id "com.gradle.plugin-publish" version "0.10.1"
}
group = "com.stepango.aar2jar"
version = "0.7"
gradlePlugin {
plugins {
aar2jar {
id = "com.stepango.aar2jar"
displayName = "Aar2Jar"
description = "Transforms Aar's to Jar's"
implementationClass = "com.stepango.aar2jar.Aar2Jar"
}
}
}
dependencies {
compileOnly gradleApi()
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
}
repositories {
jcenter()
}
pluginBundle {
website = "https://github.com/stepango/aar2jar"
vcsUrl = "https://github.com/stepango/aar2jar.git"
tags = ["gradle", "kotlin", "android", "plugin", "jar", "aar"]
}