1. 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
  2. 11 Apr, 2014 9 commits
  3. 10 Apr, 2014 5 commits
  4. 09 Apr, 2014 4 commits
  5. 08 Apr, 2014 1 commit
    • Dave Syer's avatar
      Fix path stripper in JolokiaEndpoint to account for management.contextPath · 708d5ade
      Dave Syer authored
      When the user sets management.contextPath=/admin the Jolokia
      endpoint gets mapped to /admin/jolokia, but that the path stripper it uses
      internally makes a false assumption about the form of the request path.
      The fix is simple (just use a smarter search for the endpoint path in the
      request path).
      
      Fixes gh-642
      708d5ade
  6. 07 Apr, 2014 4 commits
  7. 06 Apr, 2014 1 commit
    • Dave Syer's avatar
      Extend use of reflection for port in Jetty 9 · 8295e82e
      Dave Syer authored
      There was already a reflection hack in place for logging the local
      port in Jetty 8/9. It wasn't being used for the getPort() method
      for some reason, so that needed to be fixed.
      
      Fixes gh-635
      8295e82e
  8. 05 Apr, 2014 1 commit
  9. 04 Apr, 2014 3 commits
  10. 03 Apr, 2014 7 commits