File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed
src/main/kotlin/net/kernelpanicsoft/archie Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1- ID =net.kernelpanicsoft.archie.plugin
1+ ID =net.kernelpanicsoft.archie.archie- plugin
22VERSION =1.0.3
33GROUP =net.kernelpanicsoft.archie
44DISPLAY_NAME =Archie gradle plugin
Original file line number Diff line number Diff line change 11import org.gradle.api.internal.artifacts.DefaultModuleIdentifier
22import org.gradle.api.internal.artifacts.dependencies.DefaultMinimalDependency
33import org.gradle.api.internal.artifacts.dependencies.DefaultMutableVersionConstraint
4+ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
45import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
56import org.jetbrains.kotlin.konan.properties.loadProperties
67
6364}
6465
6566tasks.withType<KotlinCompile > {
66- kotlinOptions {
67- jvmTarget = JavaVersion . VERSION_17 .toString( )
67+ compilerOptions {
68+ jvmTarget.set( JvmTarget . JVM_17 )
6869 }
6970}
7071
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ extension.versions = provider {
2424 .replace(" ," , " " )
2525 .replace(Regex (""" \s+""" ), " " )
2626 .replace(Regex (""" \[(\S+)""" ), " >=$1" )
27- .replace(Regex (""" (\S+)\ ]""" ), " <=$1" )
28- .replace(Regex (""" \ ](\S+)""" ), " >$1" )
27+ .replace(Regex (""" (\S+)]""" ), " <=$1" )
28+ .replace(Regex (""" ](\S+)""" ), " >$1" )
2929 .replace(Regex (""" (\S+)\[""" ), " <$1" )
3030 }
3131
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ develocity {
3131 }
3232}
3333
34- rootProject.name = (" net.kernelpanicsoft.archie" )
35-
3634include(" :plugin" )
35+
36+ rootProject.name = (" net.kernelpanicsoft.archie" )
37+ project(" :plugin" ).name = (" archie-plugin" )
You can’t perform that action at this time.
0 commit comments