Skip to content

Commit

Permalink
group and version should be vars.
Browse files Browse the repository at this point in the history
  • Loading branch information
autonomousapps committed Oct 27, 2023
1 parent af59558 commit a86bf11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions testkit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Testkit Changelog
# Version 0.4 (unreleased)
* New helper methods on `GradleProject` and `GradleProject.Builder` to simplify fixture construction.
* Simplified default JVM args set in `gradle.properties` of test fixtures.
* `BuildScript.group` and `BuildScript.version` should be `var`.

# Version 0.3
* Enhance testkit BuildScript model.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import com.autonomousapps.kit.render.Scribe
public class BuildScript(
public val buildscript: BuildscriptBlock? = null,
public val plugins: Plugins = Plugins.EMPTY,
public val group: String? = null,
public val version: String? = null,
public var group: String? = null,
public var version: String? = null,
public val repositories: Repositories = Repositories.EMPTY,
public val android: AndroidBlock? = null,
public val sourceSets: SourceSets = SourceSets.EMPTY,
Expand Down

0 comments on commit a86bf11

Please sign in to comment.