Skip to content

Commit

Permalink
Always use Gradle version, even "undefined"
Browse files Browse the repository at this point in the history
  • Loading branch information
Virtlink committed Jul 24, 2024
1 parent 08b118d commit a527495
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,7 @@ internal fun SpoofaxExtensionBase.overrideIdentifiers(configOverrides: SpoofaxGr
configOverrides.update(project) {
groupId = project.group.toString()
id = project.name
val versionStr = project.version.toString()
version = if(versionStr != Project.DEFAULT_VERSION) LanguageVersion.parse(versionStr) else null
version = LanguageVersion.parse(project.version.toString())
}
}

Expand Down

0 comments on commit a527495

Please sign in to comment.