-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
57 lines (44 loc) · 1.45 KB
/
build.gradle.kts
File metadata and controls
57 lines (44 loc) · 1.45 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
57
group = property("GROUP").toString()
version = property("VERSION").toString()
plugins {
kotlin("jvm") version "1.7.21"
`maven-publish` // deploy to Maven local repository
`java-gradle-plugin`
id("com.gradle.plugin-publish") version "1.0.0"
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.squareup.retrofit2:converter-scalars:2.9.0")
implementation("com.squareup.retrofit2:converter-moshi:2.9.0")
implementation("com.squareup.retrofit2:converter-gson:2.9.0")
implementation("com.squareup.retrofit2:converter-jaxb:2.9.0")
implementation("org.json:json:20220924")
implementation("junit:junit:4.13.2")
}
gradlePlugin {
plugins {
create(property("ID").toString()) {
id = property("ID").toString()
implementationClass = property("IMPLEMENTATION_CLASS").toString()
displayName = property("DISPLAY_NAME").toString()
}
}
}
pluginBundle {
website = property("WEBSITE").toString()
vcsUrl = property("VCS_URL").toString()
description = property("DESCRIPTION").toString()
tags = listOf(
"dependency-management",
"dependencies-management",
"dependency-manager",
"dependencies-manager",
"dependency-updates",
"new-versions",
"refresh-versions"
)
}