Skip to content

Commit 77d478f

Browse files
committed
refactor
1 parent 95ca762 commit 77d478f

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![jCenter](https://img.shields.io/badge/Apache-2.0-green.svg
55
)](https://github.com/Foso/KotlinReactNativeMpp/blob/master/LICENSE)
66
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
7-
[![jCenter](https://img.shields.io/badge/Kotlin-1.4.30-green.svg
7+
[![jCenter](https://img.shields.io/badge/Kotlin-1.4.31-green.svg
88
)](https://github.com/Foso/Sheasy/blob/master/LICENSE)
99

1010

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ buildscript {
1010
}
1111

1212
dependencies {
13-
classpath "de.jensklingenberg:gradle-plugin:1.0.0"
13+
classpath "de.jensklingenberg:compiler.gradleplugin.helloworld:1.0.0"
1414
}
1515
}
1616
plugins {
17-
id 'org.jetbrains.kotlin.multiplatform' version '1.4.30'
17+
id 'org.jetbrains.kotlin.multiplatform' version '1.4.31'
1818
}
19-
apply plugin: 'compiler.plugin.helloworld'
19+
apply plugin: 'compiler.gradleplugin.helloworld'
2020

2121
System.setProperty("kotlin.compiler.execution.strategy", "in-process") // For debugging
2222

buildSrc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.jetbrains.kotlin.jvm' version '1.4.30'
2+
id 'org.jetbrains.kotlin.jvm' version '1.4.31'
33
}
44
apply plugin: "maven"
55

buildSrc/compiler-plugin/gradle-plugin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: "maven"
55

66

77
group = "de.jensklingenberg"
8-
archivesBaseName = "gradle-plugin"
8+
archivesBaseName = "compiler.gradleplugin.helloworld"
99
version = "1.0.0"
1010

1111

@@ -18,7 +18,7 @@ install {
1818
gradlePlugin {
1919
plugins {
2020
simplePlugin {
21-
id = "compiler.plugin.helloworld" // users will do `apply plugin: "compiler.plugin.helloworld"`
21+
id = "compiler.gradleplugin.helloworld" // users will do `apply plugin: "compiler.plugin.helloworld"`
2222
implementationClass = "de.jensklingenberg.gradle.HelloWorldGradleSubPlugin" // entry-point class
2323
}
2424
}

buildSrc/compiler-plugin/gradle-plugin/src/main/java/de/jensklingenberg/gradle/HelloWorldGradleSubplugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class HelloWorldGradleSubPlugin : KotlinCompilerPluginSupportPlugin {
1515

1616
companion object {
1717
const val SERIALIZATION_GROUP_NAME = "de.jensklingenberg"
18-
const val ARTIFACT_NAME = "kotlin-compiler-plugin"
18+
const val ARTIFACT_NAME = "helloworld-compiler-plugin"
1919
const val NATIVE_ARTIFACT_NAME = "$ARTIFACT_NAME-native"
2020
const val VERSION_NUMBER = "0.0.1"
2121
}

buildSrc/compiler-plugin/kotlin-native-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: "kotlin-kapt"
77

88

99
group = "de.jensklingenberg"
10-
archivesBaseName = "kotlin-compiler-plugin-native"
10+
archivesBaseName = "helloworld-compiler-plugin-native"
1111
version = "0.0.1"
1212

1313
install {

buildSrc/compiler-plugin/kotlin-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: "kotlin-kapt"
77

88

99
group = "de.jensklingenberg"
10-
archivesBaseName = "kotlin-compiler-plugin"
10+
archivesBaseName = "helloworld-compiler-plugin"
1111
version = "0.0.1"
1212

1313
install {

0 commit comments

Comments
 (0)