-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
56 lines (45 loc) · 1.24 KB
/
build.gradle
File metadata and controls
56 lines (45 loc) · 1.24 KB
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 'org.jetbrains.kotlin.jvm' version '1.9.22'
id 'java-gradle-plugin'
id "com.gradle.plugin-publish" version '1.2.1'
}
group 'sleepsci.analytics'
version '0.9.2'
repositories {
jcenter()
}
dependencies {
compileOnly gradleApi()
// Kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.22"
implementation "com.squareup:kotlinpoet:1.0.0-RC1"
// JSON Parsing
implementation "com.google.code.gson:gson:2.8.2"
}
gradlePlugin {
plugins {
eventsGenerator {
id = 'com.sleepsci.eventsdroid'
implementationClass = 'com.betterme.eventsdroid.EventsGeneratorPlugin'
}
}
}
gradlePlugin {
description = 'Plugin which allows automatic analytics events generation based on the given schema'
website = 'https://github.com/AppSci/Eventsdroid'
vcsUrl = 'https://github.com/AppSci/Eventsdroid'
plugins {
eventsGenerator {
tags = ['analytics', 'events', 'codegen', 'generation']
displayName = 'eventsDroid'
version = '0.9.2'
description = "events generator plugin"
}
}
}
compileKotlin {
kotlinOptions.jvmTarget = "17"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "17"
}