1. 17 8月, 2019 14 次提交
  2. 16 8月, 2019 3 次提交
  3. 15 8月, 2019 1 次提交
    • B
      Move compile config to a Gradle convention · 71ddb861
      Brian Clozel 提交于
      This commit moves the compile configuration from the Gradle DSL to a
      convention. This configuration is not changing often, and we're using
      that opportunity to make the Java source compatibility a project
      property so as to easily recent JDKs this on the command line.
      
      See gh-23282
      71ddb861
  4. 14 8月, 2019 5 次提交
    • S
      Polishing · 76645644
      Sebastien Deleuze 提交于
      See gh-21778
      76645644
    • S
      Restore annotated code samples · db02d38c
      Sebastien Deleuze 提交于
      See gh-21778
      db02d38c
    • S
      Store refdoc preferred language · ec740559
      Sebastien Deleuze 提交于
      See gh-21778
      ec740559
    • J
      Avoid UndeclaredThrowableStrategy with 1.8 bytecode level (CGLIB 3.3) · 9bd3a535
      Juergen Hoeller 提交于
      ClassLoaderAwareUndeclaredThrowableStrategy fails with a VerifyError on recent JDKs after the CGLIB 3.3 upgrade. The alternative is to replace it with a plain ClassLoaderAwareGeneratorStrategy (extracted from CglibSubclassingInstantiationStrategy) and custom UndeclaredThrowableException handling in CglibMethodInvocation.
      
      See gh-23453
      9bd3a535
    • B
      Replace propdeps plugin with custom plugin · 561af5f8
      Brian Clozel 提交于
      Prior to this commit, the Spring Framework build would be using the
      propdeps Gradle plugin to introduce two new configurations to the build:
      "optional" and "provided". This would also configure related conventions
      for IDEs, adding those configurations to published POMs.
      
      This commit removes the need for this plugin and creates instead a
      custom plugin for an "optional" configuration. While the Eclipse IDE
      support is still supported, there is no need for specific conventions
      for IntelliJ IDEA anymore.
      This new plugin does not introduce the "provided" scope, as
      "compileOnly" and "testCompileOnly" are here for that.
      
      Also as of this commit, optional/provided dependencies are not published
      with the Spring Framework modules POMs annymore.
      Generally, these dependencies do not provide actionable information to
      the developers reading / tools consuming the published POMs.
      
      Optional/Provided dependencies are **not**:
      * dependencies you can add to enable some supported feature
      * dependencies versions that you can use to figure out CVEs or bugs
      * dependencies that might be missing in existing Spring applications
      
      In the context of Spring Framework, optional dependencies are just
      libraries are Spring is compiling against for various technical reasons.
      With that in mind, we are not publishing that information anymore.
      
      See gh-23282
      561af5f8
  5. 13 8月, 2019 9 次提交
  6. 12 8月, 2019 4 次提交
  7. 10 8月, 2019 3 次提交
  8. 09 8月, 2019 1 次提交