Skip to content

Commit e255edf

Browse files
lppeddftomassetti
authored andcommitted
build: clean up
1 parent 8a75313 commit e255edf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

antlr-kotlin-runtime/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ kotlin {
3333

3434
mavenPublishing {
3535
coordinates(
36-
groupId = project.group as String,
36+
groupId = project.group.toString(),
3737
artifactId = project.name,
38-
version = project.version as String,
38+
version = project.version.toString(),
3939
)
4040

4141
setupPom(project, projectDescription = "Runtime for ANTLR Kotlin")

antlr-kotlin-target/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ dependencies {
1111

1212
mavenPublishing {
1313
coordinates(
14-
groupId = project.group as String,
14+
groupId = project.group.toString(),
1515
artifactId = project.name,
16-
version = project.version as String,
16+
version = project.version.toString(),
1717
)
1818

1919
setupPom(project, projectDescription = "Kotlin target for ANTLR")

0 commit comments

Comments
 (0)