Skip to content

Commit 3037690

Browse files
author
Andrei Shikov
committed
Update version
1 parent 800b6a8 commit 3037690

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
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.1"
17+
id "me.shika.kotlin-object-java-serialization" version "1.0.2"
1818
}
1919
2020
// or else
@@ -25,7 +25,7 @@ buildscript {
2525
}
2626
}
2727
dependencies {
28-
classpath "me.shika:kotlin-object-java-serialization:1.0.1"
28+
classpath "me.shika:kotlin-object-java-serialization:1.0.2"
2929
}
3030
}
3131

build.gradle

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

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

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.1"
36+
version = "1.0.2"
3737
)
3838

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

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ rootProject.name = 'kotlin-object-java-serialization'
22

33
include ':gradle-plugin'
44
include ':kotlin-plugin'
5+
include ':integration-test'

0 commit comments

Comments
 (0)