-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
54 lines (47 loc) · 1.13 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
plugins {
id 'com.gradle.plugin-publish' version '0.10.0'
id 'org.jetbrains.kotlin.jvm' version '1.3.11'
id 'java-gradle-plugin'
id 'maven'
}
version '1.0-SNAPSHOT'
group 'com.homeprojects'
repositories {
google()
mavenCentral()
jcenter()
}
pluginBundle {
website = 'https://github.com/Vaiklol/'
tags = ['codegen', 'asm', 'bytecode', 'plugins']
}
gradlePlugin {
plugins {
generatorPlugin {
id = 'generator-plugin'
displayName = 'generator'
description = 'plugin for generate simple sout and toast in android kotlin app'
implementationClass = 'Generator'
}
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation files('/Users/vadik/Downloads/asm-7.1.jar')
compile 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.21'
compile gradleApi()
compile localGroovy()
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
uploadArchives {
repositories {
mavenDeployer {
repository(url: uri('repo'))
}
}
}