1. 08 Jun, 2015 4 commits
    • Stephane Nicoll's avatar
      Fix indent · 7fc9c2af
      Stephane Nicoll authored
      7fc9c2af
    • Stephane Nicoll's avatar
      Add reference to Mustache to documentation · e16f5d03
      Stephane Nicoll authored
      Closes gh-3121
      e16f5d03
    • Stephane Nicoll's avatar
      Only associate JTA transaction manager to JMS factory · 38cca9c1
      Stephane Nicoll authored
      The JMS MessageListenerContainer supports the PlatformTransactionManager
      abstraction with either a `JmsTransactionManager` for local transactions
      or `JtaTransactionManager` for distributed transactions. The former is
      kind of deprecated (`setTransacted` should be used instead). In any case,
      any other `PlatformTransactionManager` implementation is not supported.
      
      Update JmsAnnotationDrivenConfiguration to only associated a JTA
      transaction manager, if any.
      
      Closes gh-3150
      38cca9c1
    • Dave Syer's avatar
      Set UserDetailsService in default AuthenticationManagerBuilder · 1c0bcc13
      Dave Syer authored
      Only affects the default AuthenticationManagerBuilder (so when users
      are not overriding the default global user details). Makes the
      UserDetailsService effectively available as it would be if we used
      AuthenticationManagerBuilder.inMemoryAuthentication() as a
      shared object in the HttpSecurity.
      
      Fixes gh-3152
      1c0bcc13
  2. 07 Jun, 2015 1 commit
    • izeye's avatar
      Add missing slash · c7103bf2
      izeye authored
      `endpoints.jolokia.path` requires the path to start with a slash.
      
      Closes gh-2864
      c7103bf2
  3. 04 Jun, 2015 2 commits
  4. 02 Jun, 2015 7 commits
  5. 28 May, 2015 2 commits
  6. 26 May, 2015 3 commits
    • Stephane Nicoll's avatar
      Fix artifact extension retrieval · f25ce8a3
      Stephane Nicoll authored
      Do not rely on the packaging type to figure out what the extension of the
      main artifact will be. So far, using `jar` and `war` packaging for `.jar`
      and `.war` files worked by chance.
      
      We know retrieve the actual extension as provided by Maven's
      `ArtifactHandler`.
      
      Fixes gh-2762
      f25ce8a3
    • Stephane Nicoll's avatar
      Fix Gzip filter properties · 160f2d34
      Stephane Nicoll authored
      Fix `excludeAgentPatterns`, `excludePaths` and `excludePathPatterns`
      properties. Introduce `excludedMimeTypes` property.
      
      Fixes gh-3042
      160f2d34
    • Stephane Nicoll's avatar
      Refine log message · 676b7d71
      Stephane Nicoll authored
      Rework c03e14be to avoid an extra empty space in log message
      
      See gh-3033
      676b7d71
  7. 25 May, 2015 1 commit
  8. 20 May, 2015 3 commits
  9. 18 May, 2015 10 commits
  10. 15 May, 2015 3 commits
  11. 11 May, 2015 4 commits
    • Andy Wilkinson's avatar
      Rely soley on underlying logger for isEnabled in Liquibase logger · fc311156
      Andy Wilkinson authored
      Previously, CommonsLoggingLiquibaseLogger referred to its
      configured level and the underlying Commons Logging log when
      determining if logging was enabled for a particular level. This did
      not work as intended as setLogLevel was never called leaving the
      configured level stuck at its default value of INFO. As a result of
      this any logging at levels below INFO would not be output,
      irrespective of the configuration of the underlying logging framework.
      
      This commit updates CommonsLoggingLiquibaseLogger to rely purely on
      the Commons Logging log when determining whether or not logging for
      a particular level is enabled. This brings the implementation into
      line with liquibase-slf4j [1] which provides similar functionality,
      albeit using SLF4J rather than Commons Logging
      
      Closes gh-2916
      
      [1] https://github.com/mattbertolini/liquibase-slf4j/blob/master/src/main/java/liquibase/ext/logging/slf4j/Slf4jLogger.java
      fc311156
    • Andy Wilkinson's avatar
      Don’t rely on deduction of main application class when running tests · 4977e48e
      Andy Wilkinson authored
      Previously, when SpringApplicationContextLoader created a
      SpringApplication and used it to load the test’s application context,
      it relied upon SpringApplication correctly deducing the application’s
      main class. This would result in the wrong class being deduced as the
      application’s main method is not called so the test runner’s main method
      would be found instead.
      
      This commit updates SpringApplicationContextLoader to explicitly set
      SpringApplication’s main class to be the current test’s class. While
      not strictly the application’s main class, it is the next best thing
      available in this situation and prevents misleading log messages and
      application versions from being logged.
      
      Fixes gh-2930
      4977e48e
    • Andy Wilkinson's avatar
      Clear JAVA_OPTS in CLI tests; avoid permsize config error with Java 8 · 2053f4b2
      Andy Wilkinson authored
      When a Java 8 JVM is launched with -XX:MaxPermSize a warning message
      is output indicating that the option will be ignored. This causes the
      CLI tests that assert that no error output has been produced to fail.
      
      This commit updates the CLI's integration test harness to remove
      JAVA_OPTS from the environment of the CLI process. This prevents any
      unwanted max perm size configuration from leaking into that
      environment and breaking the build.
      2053f4b2
    • Mario A. Alvarez Garcia's avatar
      Upgrade to Hibernate 4.3.9.Final · ca94bd4b
      Mario A. Alvarez Garcia authored
      Closes gh-2928
      ca94bd4b