File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
gradle-plugin/src/main/kotlin/me/shika Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ The plugin adds `readResolve` method for every object which either:
14
14
15
15
// plugins dsl
16
16
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 "
18
18
}
19
19
20
20
// or else
@@ -25,7 +25,7 @@ buildscript {
25
25
}
26
26
}
27
27
dependencies {
28
- classpath "me.shika:kotlin-object-java-serialization:1.0.1 "
28
+ classpath "me.shika:kotlin-object-java-serialization:1.0.2 "
29
29
}
30
30
}
31
31
Original file line number Diff line number Diff line change @@ -13,5 +13,5 @@ allprojects {
13
13
}
14
14
15
15
group ' me.shika'
16
- version ' 1.0.1 '
16
+ version ' 1.0.2 '
17
17
}
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class ObjectSerializationSubplugin: KotlinGradleSubplugin<AbstractCompile> {
33
33
SubpluginArtifact (
34
34
groupId = " me.shika" ,
35
35
artifactId = " kotlin-object-java-serialization" ,
36
- version = " 1.0.1 "
36
+ version = " 1.0.2 "
37
37
)
38
38
39
39
override fun isApplicable (project : Project , task : AbstractCompile ): Boolean =
Original file line number Diff line number Diff line change @@ -2,3 +2,4 @@ rootProject.name = 'kotlin-object-java-serialization'
2
2
3
3
include ' :gradle-plugin'
4
4
include ' :kotlin-plugin'
5
+ include ' :integration-test'
You can’t perform that action at this time.
0 commit comments