1. 31 Mar, 2015 1 commit
  2. 30 Mar, 2015 2 commits
  3. 26 Mar, 2015 6 commits
  4. 24 Mar, 2015 3 commits
    • Phillip Webb's avatar
      Polish VcapApplicationListenerTests · 4d8cf714
      Phillip Webb authored
      4d8cf714
    • Phillip Webb's avatar
      Merge pull request #2707 from nebhale/vcap-service-numbers · 6d880cf7
      Phillip Webb authored
      * vcap-service-numbers:
        Support VcapApplicationListener Number Credentials
      6d880cf7
    • Ben Hale's avatar
      Support VcapApplicationListener Number Credentials · 147755f3
      Ben Hale authored
      Update VcapApplicationListener to support Number based credentials.
      Previously, any service credential value that wasn't a String would
      be discarded. This was particularly a problem for services that exposed
      a port as a JSON Number.  This change takes numbers in the credential
      payload into account, converting them to Strings so that they will pass
      through the properties system properly. There's no real downside to this
      as Spring will coerce them back into Numbers if needed by an application.
      
      Fixes gh-2707
      147755f3
  5. 17 Mar, 2015 1 commit
  6. 16 Mar, 2015 1 commit
  7. 04 Mar, 2015 1 commit
  8. 02 Mar, 2015 2 commits
  9. 26 Feb, 2015 2 commits
  10. 24 Feb, 2015 1 commit
    • Phillip Webb's avatar
      Reorganize integration tests · 7ac8cac3
      Phillip Webb authored
      Make spring-boot-integration-tests a top level project and move the
      existing gradle tests and security tests to be sub-modules.
      7ac8cac3
  11. 23 Feb, 2015 2 commits
    • Phillip Webb's avatar
      Filter integration tests to only pom folders · f0ef882f
      Phillip Webb authored
      Update invoker configuration so that only folders with a pom.xml file
      are invoked. This helps when switching between the 1.1.x and master
      branches since empty folders left by git no longer fail the build.
      f0ef882f
    • Phillip Webb's avatar
      Polish · 8a8b5d3a
      Phillip Webb authored
      8a8b5d3a
  12. 19 Feb, 2015 2 commits
  13. 18 Feb, 2015 1 commit
  14. 17 Feb, 2015 8 commits
  15. 12 Feb, 2015 1 commit
  16. 09 Feb, 2015 1 commit
  17. 04 Feb, 2015 1 commit
  18. 02 Feb, 2015 1 commit
  19. 29 Jan, 2015 3 commits
    • Stephane Nicoll's avatar
      Harmonize property name · d64cc082
      Stephane Nicoll authored
      The property default format is lower case using hyphen. The JMX default
      domain property has been harmonized to that format.
      
      Fixes gh-2427
      d64cc082
    • Andy Wilkinson's avatar
      Ignore temporary .writing files when finding output files · c346e996
      Andy Wilkinson authored
      Spring Integration's FileWritingMessageHandler uses a .writing file
      while it's in the process of writing a message to disk and then
      performs a rename (depending on the OS and filesystem this may or may
      not be atommic) to create the .msg file. Prior to this commit the
      test was finding the temporary .writing files and examining them. This
      could lead to a FileNotFoundException being thrown as the temporary
      file was deleted while the test was trying to read its contents.
      
      This commit updates the test to only look for files with a .msg suffix
      
      Fixes gh-2428
      c346e996
    • Andy Wilkinson's avatar
      Add a single how to for creating a deployable war file · c3020e9e
      Andy Wilkinson authored
      This commit updates the documentation to describe the three steps
      involved in producing a deployable war file in a single place.
      
      Closes gh-2185
      c3020e9e