1. 03 Jul, 2014 2 commits
    • Andy Wilkinson's avatar
      Ensure that spring-boot-starter-ws pulls in the right version of Spring · fdc3d70c
      Andy Wilkinson authored
      Prior to this commit, when used with Gradle, spring-boot-starter-ws was
      pulling in the versions of spring-jms, spring-oxm, and spring-tx that
      Spring WS depends upon, rather than using the Boot’s Spring version.
      It’s ok at the moment as both Boot and Spring WS depend on Spring 4.0.5
      but will cause problems if we upgrade to 4.0.6 before Spring WS does.
      
      This commit adds explicit dependencies on spring-jms and spring-oxm so
      that Gradle pulls in the correct version (as long as a transitive
      dependency doesn’t pull in a version that’s greater than the version
      Boot’s using).
      fdc3d70c
    • Andy Wilkinson's avatar
      Fix Gradle repackaging so it is only performed on the desired jars · 4be688aa
      Andy Wilkinson authored
      The logic that determined whether or not the repackaging action should
      be applied to a particular jar task was broken and caused problems
      when a custom RepackageTask was used in a project's build.
      
      This commit updates the logic so that repackaging will be applied:
      
       - To the default jar task if RepackageTask.withJarTask is null
       - To a jar task if it is equal to RepackageTask.withJarTask
       - To a jar task if its name is equal to RepackageTask.withJarTask
      
      Repackaging is not applied if:
      
       - RepackageTask.enabled is false
      
      Numerous integration tests have been added to verify the repackaging
      behaviour.
      
      Fixes #1204
      4be688aa
  2. 02 Jul, 2014 8 commits
  3. 01 Jul, 2014 5 commits
  4. 30 Jun, 2014 1 commit
  5. 28 Jun, 2014 1 commit
  6. 27 Jun, 2014 9 commits
  7. 26 Jun, 2014 11 commits
  8. 25 Jun, 2014 3 commits