Skip to content

Commit c25dad4

Browse files
author
Andrei Shikov
committed
Republish with correct dependencies
1 parent 578b5e3 commit c25dad4

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The plugin adds `readResolve` method for every object which either:
1414
1515
// plugins dsl
1616
plugins {
17-
id "me.shika.kotlin-object-java-serialization" version "1.0.0"
17+
id "me.shika.kotlin-object-java-serialization" version "1.0.1"
1818
}
1919
2020
// or else
@@ -25,7 +25,7 @@ buildscript {
2525
}
2626
}
2727
dependencies {
28-
classpath "me.shika:kotlin-object-java-serialization:1.0.0"
28+
classpath "me.shika:kotlin-object-java-serialization:1.0.1"
2929
}
3030
}
3131

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ allprojects {
1313
}
1414

1515
group 'me.shika'
16-
version '1.0.0'
16+
version '1.0.1'
1717
}
1818

1919
dependencies {

gradle-plugin/src/main/kotlin/me/shika/ObjectSerializationSubplugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ObjectSerializationSubplugin: KotlinGradleSubplugin<AbstractCompile> {
3333
SubpluginArtifact(
3434
groupId = "me.shika",
3535
artifactId = "kotlin-object-java-serialization",
36-
version = "1.0.0"
36+
version = "1.0.1"
3737
)
3838

3939
override fun isApplicable(project: Project, task: AbstractCompile): Boolean =

gradle/utils/embedded.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ configurations {
22
embedded {
33
transitive = false
44
}
5-
implementation.extendsFrom(embedded)
5+
compileOnly.extendsFrom(embedded)
66
}
77

88
def embeddedProjects() {
@@ -16,11 +16,11 @@ def embeddedProjects() {
1616
afterEvaluate {
1717
dependencies {
1818
embeddedProjects().collect { it.configurations.findByName("published") }
19-
.forEach {
20-
it.dependencies.forEach {
21-
runtime "$it.group:$it.name:$it.version"
22-
}
19+
.forEach {
20+
it.dependencies.forEach {
21+
runtime "$it.group:$it.name:$it.version"
2322
}
23+
}
2424
}
2525

2626
jar {

kotlin-plugin/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ dependencies {
1212

1313
testImplementation 'com.github.tschuchortdev:kotlin-compile-testing:1.2.5'
1414
testImplementation 'junit:junit:4.12'
15-
testImplementation "org.jetbrains.kotlin:kotlin-compiler-embeddable"
1615
}
1716

1817
compileKotlin {

0 commit comments

Comments
 (0)