Skip to content

Commit

Permalink
xemantic.authorIds must be retrieved dynamically (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
morisil authored Jan 26, 2025
1 parent 1e577c8 commit c841a01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/XemanticConfiguration.kt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public abstract class XemanticConfiguration @Inject constructor(
private val _developers = mutableListOf<Developer>()
public val developers: List<Developer> = _developers

public val authorIds: List<String> = developers.map { it.id }
public val authorIds: List<String> get() = developers.map { it.id }

public val isReleaseBuild: Boolean = !(project.version as String).endsWith("-SNAPSHOT")

Expand Down

0 comments on commit c841a01

Please sign in to comment.