1. 23 Apr, 2014 5 commits
  2. 22 Apr, 2014 4 commits
  3. 21 Apr, 2014 1 commit
  4. 20 Apr, 2014 5 commits
  5. 19 Apr, 2014 1 commit
  6. 18 Apr, 2014 7 commits
  7. 17 Apr, 2014 2 commits
    • Dave Syer's avatar
      Support for random ports in @IntegrationTest · 559009b8
      Dave Syer authored
      User can now set up default properties in the Environment using
      @IntegrationTest("foo:bar", "x:y") etc. Using "server.port:0" you
      can get Tomcat or Jetty to spin up on a random port. We also add
      a test listener that populates "local.server.port" with the actual
      port the server started on so you can @Value("${local.server.port}")
      inject it into the test case.
      
      See gh-607 (this should make the extension of that PR to samples
      much easier)
      559009b8
    • Dave Syer's avatar
      2d16c591
  8. 16 Apr, 2014 4 commits
  9. 15 Apr, 2014 5 commits
    • Andy Wilkinson's avatar
      Ensure that local file dependencies are packaged by the Gradle plugin · 283f1b16
      Andy Wilkinson authored
      Prior to this commit, a dependency on a local file was not being
      packaged by the Gradle plugin. This was a regression from the behaviour
      in 0.5.0.M6 caused by the move to using a ResolvedConfiguration and
      ResolvedArtifacts (4f677bec) to gain access to an artifact's type so
      that non-jar artefacts could be filtered out. Since then, the approach
      to filtering has been changed (38585bf3) and access to an artifact's
      type is no longer needed.
      
      This commit updates ProjectLibraries to restore its use of a
      FileCollection rather than a ResolvedConfiguration when getting hold of
      the files in a configuration. This means that the resulting jar will
      now include dependencies that aren't resolved, such as those that are
      provided as local files. The filtering that is applied to the files
      is unaffected by this change and only files that are zip files will be
      included.
      
      Fixes #672
      283f1b16
    • Dave Syer's avatar
      Expand Error Handling section in docs a bit · fb29a3c3
      Dave Syer authored
      Fixes gh-513
      fb29a3c3
    • Dave Syer's avatar
      Add spring.thymeleaf.contentType (defaults to HTML) · 0b894022
      Dave Syer authored
      User can specify the content type in external properties now, optionally
      ommitting the charset (since that is duplicated). If charset is not
      appended by user Spring will do it.
      
      Fixes gh-671
      0b894022
    • Dave Syer's avatar
      Add support for .yaml file extensions · 1e0c1d15
      Dave Syer authored
      Apparently yaml.org prefers .yaml, but the internet seems
      to be more aligned with .yml, so I guess we should support both
      out of the box.
      
      Fixes gh-675
      1e0c1d15
    • Dave Syer's avatar
      Special case for deferred start based on Handler type · 78f85758
      Dave Syer authored
      Fixes gh-673
      78f85758
  10. 11 Apr, 2014 6 commits