1. 10 4月, 2018 1 次提交
  2. 04 4月, 2018 1 次提交
    • S
      Use Gradle 4.6's built-in support for the JUnit Platform · 56774baa
      Sam Brannen 提交于
      Gradle 4.6 provides built-in support for the JUnit Platform within the
      standard `test` task.
      
      This commit configures a custom `testJUnitJupiter` test task for
      executing JUnit Jupiter tests directly on the JUnit Platform instead of
      indirectly on JUnit 4 via @RunWith(JUnitPlatform.class).
      
      This switch provides for better integration with Gradle's test reporting
      and paves the way for a possible transition to the JUnit Platform in the
      future.
      
      Issue: SPR-16672
      56774baa
  3. 01 4月, 2018 1 次提交
  4. 27 3月, 2018 1 次提交
  5. 24 3月, 2018 2 次提交
  6. 13 3月, 2018 1 次提交
  7. 09 3月, 2018 1 次提交
  8. 05 3月, 2018 1 次提交
  9. 28 2月, 2018 1 次提交
  10. 13 2月, 2018 3 次提交
  11. 11 2月, 2018 1 次提交
  12. 07 2月, 2018 1 次提交
  13. 23 1月, 2018 2 次提交
  14. 08 1月, 2018 1 次提交
  15. 28 12月, 2017 1 次提交
  16. 22 12月, 2017 1 次提交
  17. 15 12月, 2017 1 次提交
  18. 28 11月, 2017 1 次提交
  19. 26 11月, 2017 1 次提交
  20. 22 11月, 2017 1 次提交
  21. 20 11月, 2017 1 次提交
  22. 14 11月, 2017 1 次提交
  23. 26 10月, 2017 1 次提交
  24. 23 10月, 2017 1 次提交
  25. 20 10月, 2017 1 次提交
  26. 04 10月, 2017 1 次提交
  27. 24 9月, 2017 1 次提交
  28. 23 9月, 2017 1 次提交
  29. 14 9月, 2017 1 次提交
  30. 07 9月, 2017 1 次提交
    • S
      Exclude commons-logging from spring-test dependencies · 8acb8aef
      Sam Brannen 提交于
      Prior to this commit, various dependencies in the spring-test module
      pulled in commons-logging as a transitive dependency. Consequently,
      the presence of commons-logging in the generated Eclipse classpath
      overrode the intended use of the spring-jcl module causing JUL to be
      used instead of log4j for tests executed within Eclipse, thereby
      ignoring the configuration in src/test/resources/log4j2-test.xml.
      
      This commit addresses this issue by excluding commons-logging in
      spring-test.gradle for all Selenium dependencies.
      
      Issue: SPR-15930
      8acb8aef
  31. 29 8月, 2017 1 次提交
  32. 24 8月, 2017 1 次提交
  33. 23 8月, 2017 1 次提交
  34. 22 8月, 2017 1 次提交
  35. 21 8月, 2017 2 次提交
    • B
      Apply dependency management to selected modules · cc3d7d2d
      Brian Clozel 提交于
      This commit applies the Dependency Management Plugin to modules that
      require it; right now Spring Framework is importing BOMs for Netty and
      Reactor dependencies only.
      
      Instead of applying those BOMs to all modules, they're applied only
      where they're needed.
      
      Issue: SPR-15885
      cc3d7d2d
    • B
      Move modules to independent build files · 2eeb428e
      Brian Clozel 提交于
      The main `build.gradle` file contains now only the common build
      infrastructure; all module-specific build configurations have
      been moved to their own build file.
      
      Issue: SPR-15885
      2eeb428e