- 28 Jan, 2014 8 commits
-
-
Ben Hale authored
By convention, Ruby code is indented using two spaces ( ) per-level. The code used tabs (\t) previously and therefore wasn't idiomatic. This change updates the indenting to use two spaces.
-
Ben Hale authored
This change adds support for --HEAD builds to the Homebrew formula. It defines a conditional dependency on Maven and builds the -cli project during install. The location to install from is abstracted out so that code is identical regardless of whether the build is --HEAD or mainline.
-
Dave Syer authored
Fixes gh-275
-
Dave Syer authored
If the context hierarchy is from a SpringApplication we can control the shutdown semantics a bit. Specifically we need a listener in the child context that will shut it down when the parent closes (since assummably the child relies on beans in the arent that may now be disposed). Fixes gh-275
-
Dave Syer authored
-
Phillip Webb authored
Fixed the nested jar URLHandler to correctly deal with files on Windows. Fixes gh-269
-
Phillip Webb authored
-
Phillip Webb authored
Remove what appears to be unused CLI code.
-
- 27 Jan, 2014 13 commits
-
-
Phillip Webb authored
Remove the custom JodaModule support which is not necessary with Spring 4.0.1. Fixes gh-186
-
Phillip Webb authored
Upgrade to the latest 4.0.x SNAPSHOT of the Spring Framework in preparation for the 4.0.1 release.
-
Phillip Webb authored
Add a LevelRemappingAppender that can remap the level of logback events as they are written. Also update the base configuration to change the somewhat noisy Thymeleaf INFO logging to DEBUG. Fixes gh-265
-
Phillip Webb authored
Change TomcatEmbeddedServletContainerFactory to allow per context skip patterns to be defined, rather than using a global system property. This commit also renames `skipPatterns` to `tldSkip` to align it with Tomcat context.xml configuration. Updates gh-256
-
Phillip Webb authored
-
Dave Syer authored
-
Dave Syer authored
...without any deprecation warnings and with some chance that it will still work with Hibernate 5. Fixes gh-256
-
Dave Syer authored
I'd prefer a fix that wasn't global for the VM, but the default values shoudl be harmless at least. Fixes gh-274
-
Dave Syer authored
Addresses gh-263 to some extent.
-
Dave Syer authored
Also new section of README for propery keys used by the launcher.
-
Dave Syer authored
-
Phillip Webb authored
Update JarFile to allow the custom registration of a JAR `URLStreamHandler` that allows `jar:` URLs to be constructed from Strings. This removes the previous requirement that all nested JAR URLs be created with a 'context'. To supported nested JARs the `java.protocol.handler.pkgs` system property is changed so that our custom URLHandler is picked for 'jar' protocols in preference to the Java default. Fixes gh-269
-
Phillip Webb authored
-
- 26 Jan, 2014 1 commit
-
-
Dave Syer authored
I guess this didn't get done before because of the legacy structure of the class hierarchy of TestContextLoaders. It makes sense that we should just prefer netsted @Configuration though, so that's what this change does. Fixes gh-271
-
- 25 Jan, 2014 2 commits
-
-
Phillip Webb authored
Update `GroovyCompiler` and `AetherGrapeEngineFactory` to use the recently added `spring-boot-dependency-tools` in favor of loading dependency information from a generated properties file.
-
Phillip Webb authored
Add a gradle `ResolutionStrategy` that resolves missing version numbers using the `spring-boot-dependencies` POM. This commit also introduces a new `spring-boot-dependency-tools` module that provides programmatic access to the `dependencyManagement` section of the dependencies POM. Fixed gh-262
-
- 24 Jan, 2014 6 commits
-
-
Dave Syer authored
-
Dave Syer authored
--verbose seems to be only for CLI logging (so really only for dependency resolution). --debug is interpreted by SpringApplication but up to now has been extracted and deleted from the command line by the CommandRunner. This change makes --debug set a System property *and* pass it down to the application (if used with -- separator). Fixes gh-266
-
Dave Syer authored
Fixes gh-264
-
Dave Syer authored
-
Phillip Webb authored
-
Phillip Webb authored
-
- 23 Jan, 2014 5 commits
-
-
Dave Syer authored
Fixes gh-260
-
Dave Syer authored
spring.config.[name,location] can both be a comma-separated list now. Highest priority is last, like a hash overriding its keys (as per other conventions in the listener). Fixes gh-261
-
Dave Syer authored
If any @Import (or @Enable*, especially @EnableScheduling) has registered bean *names* as ApplicationListeners, and the application context wasn't refreshed fully when it failed, then the listener lookup could fail and mask the original exception Fixes gh-253
-
Dave Syer authored
-
Dave Syer authored
* Ensure prefix ends with period * Allow prefix and key index to be set separately
-
- 22 Jan, 2014 5 commits
-
-
Andy Wilkinson authored
-
Dave Syer authored
Fixes gh-250
-
Dave Syer authored
-
Oliver Gierke authored
Declared spring-aspects as additional dependency in Spring Data JPA starter pom. This is necessary to let the auditing feature work correctly.
-
Phillip Webb authored
-