File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ kotlin {
3333
3434mavenPublishing {
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" )
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ dependencies {
1111
1212mavenPublishing {
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" )
You can’t perform that action at this time.
0 commit comments