1. 18 Jun, 2014 3 commits
  2. 17 Jun, 2014 15 commits
  3. 16 Jun, 2014 12 commits
  4. 15 Jun, 2014 3 commits
  5. 13 Jun, 2014 4 commits
  6. 12 Jun, 2014 3 commits
    • Dave Syer's avatar
      Enhance JarCommand to support lists of includes and excludes · 2c691e5a
      Dave Syer authored
      The lists are comma separated. In addition, user can add prefixes
      "+" or "-", to signal that those values should be removed from the
      default list, not added to a fresh one. E.g.
      
      $ spring jar app.jar --include lib/*.jar,-static/** --exclude -**/*.jar
      
      to include a jar file specifically, and make sure it is not excluded,
      and additionally not include the static/** resources that would otherwise
      be included in the defaults. As soon as "+" or "-" prefixes are detected
      the default entries are all added (except the ones exlcuded with "-").
      
      Fixes gh-1090
      2c691e5a
    • Dave Syer's avatar
      Catch application exception in tomcat starter thread and rethrow · d8424461
      Dave Syer authored
      Fixes gh-1088
      d8424461
    • Andy Wilkinson's avatar
      Add integration tests to check Gradle plugin's war packaging behaviour · 6c4d9d71
      Andy Wilkinson authored
      There was a problem with the Gradle plugin packaging application
      dependencies in WEB-INF/lib-provided when only the servlet container
      and its dependencies should be packaged there. See #1064 for details.
      
      This commit adds two tests, one for Tomcat and one for Jetty, to
      verify that only the expected entries appear in WEB-INF/lib-provided.
      
      Closes #1071
      6c4d9d71