-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (30 loc) · 884 Bytes
/
build.gradle
File metadata and controls
35 lines (30 loc) · 884 Bytes
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.31"
id "java-gradle-plugin"
id "org.gradle.kotlin.kotlin-dsl" version "1.2.8"
id "com.gradle.plugin-publish" version "0.10.1"
}
group = "com.stepango.androidjar"
version = "0.1"
gradlePlugin {
plugins {
aar2jar {
id = "com.stepango.androidjar"
displayName = "AndroidJar"
description = "Find your android.jar dependency, easily."
implementationClass = "com.stepango.androidjar.AndroidJar"
}
}
}
dependencies {
compileOnly gradleApi()
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
}
repositories {
jcenter()
}
pluginBundle {
website = "https://github.com/stepango/android-jar"
vcsUrl = "https://github.com/stepango/android-jar.git"
tags = ["gradle", "kotlin", "android", "plugin", "jar", "android.jar"]
}