Skip to content

Releases: gmazzo/gradle-android-test-aggregation-plugin

v2.2.0

29 Oct 12:26
Compare
Choose a tag to compare

What's Changed

  • Fixed UI tests by @gmazzo in #71
  • Added jacocoAggregatedCoverageVerification verification task for enforcing metrics by @gmazzo in #73

Full Changelog: v2.1.1...v2.2.0

v2.1.1

20 Oct 10:01
Compare
Choose a tag to compare

What's Changed

  • Fixed finalizeDSL block preventing property changes by @gmazzo in #70

Full Changelog: v2.1.0...v2.1.1

v2.1.0

18 Oct 08:23
Compare
Choose a tag to compare

What's Changed

  • Bump kotlin from 1.9.0 to 1.9.10 by @dependabot in #49
  • Bump androidx-navigation from 2.7.1 to 2.7.2 by @dependabot in #54
  • Bump androidx-navigation from 2.7.2 to 2.7.3 by @dependabot in #59
  • Bump agp from 8.1.1 to 8.1.2 by @dependabot in #60
  • Update Gradle Wrapper from 8.3 to 8.4 by @gmazzo in #62
  • Bump androidx-navigation from 2.7.3 to 2.7.4 by @dependabot in #65
  • Bump com.google.android.material:material from 1.9.0 to 1.10.0 by @dependabot in #66
  • Added aggregateTestCoverage support on testAggregatedReport by @gmazzo in #68

Full Changelog: v2.0.1...v2.1.0

v2.0.1

12 Sep 08:58
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.0...v2.0.1

v2.0.0

23 Aug 19:32
Compare
Choose a tag to compare

Important

BREAKING CHANGE
Tasks names has been renamed

  • jacocoTestReport to jacocoAggregatedReport
  • testAggregateTestReport to testAggregatedReport

What's Changed

Full Changelog: v1.1.1...v2.0.0

v1.1.1

03 Jun 20:05
Compare
Choose a tag to compare

Fixed broken integration when com.android.test plugin is applied on a module.

v1.1.0

26 Apr 07:04
Compare
Choose a tag to compare

Added include/exclude DSL (#14) dedicated testAggregation to control inclusion and exclusion of projects and classes:

Autoaggregated projects

testAggregation {
  modules {
    include(project(":app"))
    exclude(projects.lib)
  }
}

Filtering coverage classes

testAggregation {
    coverage {
        include("com/**/Login*")
    }
}

v1.0.3: Fixing missing `UsageTestAggregationCompatibilityRule` when used by r…

25 Apr 11:49
Compare
Choose a tag to compare

v1.0.2

24 Apr 09:59
Compare
Choose a tag to compare

Targets JDK11 instead of JDK17

v1.0.1

20 Apr 09:56
6fdf453
Compare
Choose a tag to compare

Fixed compatibility issues with KSP 1.0.10