Skip to content

Commit 394e23e

Browse files
committed
Publish version
1 parent dab54b7 commit 394e23e

2 files changed

Lines changed: 16 additions & 7 deletions

File tree

build.gradle.kts

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,38 @@
11
plugins {
22
kotlin("jvm") version "1.7.21"
3-
`java-gradle-plugin`
3+
id("com.gradle.plugin-publish") version "1.2.0"
44
}
55

66
group = "xyz.mishkun.lobzik"
7-
version = "0.1-SNAPSHOT"
7+
version = "0.1.0"
88

99
repositories {
1010
mavenCentral()
1111
google()
1212
}
1313

1414
gradlePlugin {
15-
plugins.create("lobzik-project-dependency-analyzer") {
16-
id = "xyz.mishkun.lobzik.projectdeps"
15+
website.set("https://github.com/Mishkun/lobzik")
16+
vcsUrl.set("https://github.com/Mishkun/lobzik")
17+
plugins.create("lobzik-project-level") {
18+
id = "xyz.mishkun.lobzik-project"
1719
implementationClass = "xyz.mishkun.lobzik.dependencies.perproject.LobzikProjectDependencyGraphPlugin"
20+
displayName = "Lobzik project level plugin"
21+
description = "Gradle plugin to extract project classes dependency graph for using in Lobzik analysis pipeline"
22+
tags.set(listOf("lobzik", "modularisation", "dependency-analysis"))
1823
}
19-
plugins.create("lobzik-toplevel") {
24+
plugins.create("lobzik-top-level") {
2025
id = "xyz.mishkun.lobzik"
2126
implementationClass = "xyz.mishkun.lobzik.LobzikPlugin"
27+
displayName = "Lozbik plugin"
28+
description = "Lobzik is a gradle plugin designed to help Android developers chop their monolithic codebases into smaller pieces. It gathers data about dependency graph and runs Louvain algorithm to split it into modules"
29+
tags.set(listOf("lobzik", "modularisation", "dependency-analysis"))
2230
}
2331
}
2432

2533

2634
val VERSION_ASM = "9.4"
35+
2736
dependencies {
2837
implementation(gradleApi())
2938
implementation(gradleKotlinDsl())
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
5-
zipStorePath=wrapper/dists
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)