- 07 Jul, 2014 2 commits
-
-
Andy Wilkinson authored
Closes #1167
-
Dave Syer authored
-
- 03 Jul, 2014 3 commits
-
-
Andy Wilkinson authored
This commit refines the changes made under 4be688aa. 4be688aa made the default jar task a special case which broke repackaging of the archive produced by the default war task. This commit refines RepackageTask’s logic so that, when it’s enabled, it will repackage a jar task’s archive if: - The jar task is equal to RepackageTask.withJarTask - The name of the jar task is equal to RepackageTask.withJarTask - RepackageTask.withJarTask is null, the jar task is not referenced by another RepackageTask’s withJarTask, and the jar task has an empty classifier The last of these three is the default case and ensures the, when the Spring Boot plugin is applied, default jar and war artifacts are repackaged. The classifier check is required to prevent default source and javadoc artifacts from being repackaged. Fixes #1204
-
Andy Wilkinson authored
Prior to this commit, when used with Gradle, spring-boot-starter-ws was pulling in the versions of spring-jms, spring-oxm, and spring-tx that Spring WS depends upon, rather than using the Boot’s Spring version. It’s ok at the moment as both Boot and Spring WS depend on Spring 4.0.5 but will cause problems if we upgrade to 4.0.6 before Spring WS does. This commit adds explicit dependencies on spring-jms and spring-oxm so that Gradle pulls in the correct version (as long as a transitive dependency doesn’t pull in a version that’s greater than the version Boot’s using).
-
Andy Wilkinson authored
The logic that determined whether or not the repackaging action should be applied to a particular jar task was broken and caused problems when a custom RepackageTask was used in a project's build. This commit updates the logic so that repackaging will be applied: - To the default jar task if RepackageTask.withJarTask is null - To a jar task if it is equal to RepackageTask.withJarTask - To a jar task if its name is equal to RepackageTask.withJarTask Repackaging is not applied if: - RepackageTask.enabled is false Numerous integration tests have been added to verify the repackaging behaviour. Fixes #1204
-
- 02 Jul, 2014 8 commits
-
-
Phillip Webb authored
-
Phillip Webb authored
Remove org.eclipse.m2e.maveneclipse.site-0.0.1-SNAPSHOT-site.zip and instead point people to the release on github which now works with eclipse luna.
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
Christian Dupuis authored
see #1191
-
- 01 Jul, 2014 5 commits
-
-
Andy Wilkinson authored
Previously, SpringApplication would set the java.awt.headless system property even if it had already been set. This commit updates SpringApplication to honour any existing configuration when setting the property. Fixes #1189
-
Andy Wilkinson authored
The new ResolvedArtifact-based minus implementation was checking the wrong Set when deciding whether or not a ResolvedArtifact should be included in the result. This was leading to provided dependencies, that should have only been packaging in WEB-INF/lib-provided also being packaged in WEB-INF/lib. The WarPackaging tests have been updated. In addition to checking that WEB-INF/lib-provided does not contain anything that’s unexpected, they also verify the contents of WEB-INF/lib Fixes #1187
-
Toshiaki Maki authored
Closes #1183
-
Radesh Rao authored
Closes #1188
-
Oliver Gierke authored
Upgraded to Dijkstra SR1 BOM as well as Spring HATEOAS 0.14.0.RELEASE (required by Dijkstra SR1). Closes #1197 Fixes #1190
-
- 30 Jun, 2014 1 commit
-
-
Andy Wilkinson authored
Closes #1193
-
- 28 Jun, 2014 1 commit
-
-
Dave Syer authored
-
- 27 Jun, 2014 9 commits
-
-
Dave Syer authored
-q switches off all logging and the banner, -v switches logging to debug, running with neither will be info. Fixes gh-1108
-
Dave Syer authored
-
Dave Syer authored
E.g. logging.level.org.springframework: DEBUG logging.level.org.hibernate: WARN Fixed gh-788
-
Phillip Webb authored
-
Toshiaki Maki authored
Fixes gh-1165, fixes gh-1164
-
Dave Syer authored
See gh-1180
-
Stephane Nicoll authored
* pull1181: Fix typo in documentation
-
Iván López authored
-
Dave Syer authored
Since all dependencies are local in a jar there is no need for a GrabResolver (and it breaks the app because the default ivy GrapeEngine is used instead of the smart, pretty Boot one). Fixes gh-1179
-
- 26 Jun, 2014 11 commits
-
-
Spring Buildmaster authored
-
Phillip Webb authored
Fixes gh-1178
-
Phillip Webb authored
This reverts commit 67189477.
-
Spring Buildmaster authored
-
Phillip Webb authored
-
Phillip Webb authored
No need as picked up from the parent.
-
Dave Syer authored
If an Endpoint is already @ManagedResource then it doesn't need an additional (probably wrong) MBEan registration based on the invoke() method.
-
Dave Syer authored
The DataSourceInitializer is instantiated early by the DataSourceInitializerPostProcessor, so it has to live in isolation (in its own @Configuration) to prevent early instantiation of the DataSourceAutoConfiguration. Fixes gh-1166
-
Dave Syer authored
-
Phillip Webb authored
-
Phillip Webb authored
-