1. 17 May, 2021 1 commit
  2. 15 May, 2021 2 commits
  3. 14 May, 2021 2 commits
  4. 13 May, 2021 3 commits
  5. 12 May, 2021 4 commits
  6. 11 May, 2021 7 commits
  7. 07 May, 2021 3 commits
  8. 06 May, 2021 1 commit
  9. 05 May, 2021 1 commit
  10. 04 May, 2021 3 commits
  11. 30 Apr, 2021 10 commits
  12. 29 Apr, 2021 3 commits
    • Scott Frederick's avatar
      Use layout configuration in Maven build-image goal · c37b9b8a
      Scott Frederick authored
      This commit changes the Maven build-image goal to honor the `layout` and
      `layoutFactory` parameters to ensure that the archive content sent to the
      builder is the same as is used by the `repackage` goal to build the
      archive file.
      
      Fixes gh-26216
      c37b9b8a
    • Andy Wilkinson's avatar
      Order test tasks to run after Checkstyle and formatting checks · 3cc1ed28
      Andy Wilkinson authored
      Closes gh-26284
      3cc1ed28
    • Andy Wilkinson's avatar
      Configure bootBuildImage's targetJavaVersion using a provider · ef5fbb06
      Andy Wilkinson authored
      Previously, the targetJavaVersion property of bootBuildImage was set
      using the project's target compatibility directly. This meant that
      property's value would reflect the configured target compatibility at
      the time of the task's creation and any subsequent changes to the
      target compatibility would be missed.
      
      This commit updates the registration of the bootBuildImage task to set
      the value of the targetJavaVersion property using a provider. This
      indirection means that the project's target compatibility isn't read
      until the value of the targetJavaVersion is read, allowing any changes
      to the target compatibility to be picked up even if they're made after
      the bootBuildImage task has been created.
      
      Fixes gh-26297
      ef5fbb06