- 07 May, 2014 7 commits
-
-
Andy Wilkinson authored
In addition to the upgrade to Dijkstra (#743) Spring HATEOAS has been upgraded to 0.11.0 (#801) and Mongo's Java driver has been upgraded to 2.12.1 (#689). In both cases this is the same version as is used by Dijkstra RC1. The new version of Mongo's Java driver changes the exception that's thrown when Mongo isn't running and a connection attempt fails. The Mongo sample has been updated accordingly. RepositoryRestMvcAutoConfiguration has been updated to be configured before JpaRepositoriesAutoConfiguration. This ensures that the former's transitive import of SpringDataJacksonConfiguration takes precedence over the latter's import of the same. This is necessary as RepositoryRestMvcConfiguration requires a bean that's declared by SpringDataJacksonConfiguration and, if JpaRepositoriesAutoConfiguration is processed first, its conditions may cause the import SpringDataJacksonConfiguration to be skipped causing instantiation of RepositoryRestMvcConfiguration to fail. Closes #689 Closes #743
-
Andy Wilkinson authored
-
Phillip Webb authored
Replace the `spring-boot.version` property with a hard-coded value, rather than relying on the parent version. Allows locally installed snapshots to be used as the parents of projects with a different version number.
-
Phillip Webb authored
-
Andy Wilkinson authored
Upgrade to latest release of Spring AMQP and provide dependency management for all of its modules Closes #799
-
Greg Turnquist authored
Closes #397 and #717
-
Dave Syer authored
-
- 06 May, 2014 7 commits
-
-
Stephane Nicoll authored
This commit provides several options to exclude one or more dependencies: * excludes allows to specify an arbitrary number of exclude sub element defining the groupId and artifactId of the dependency to exclude * excludedGroupIds defines the comma separated list of groupIds to exclude * excludeArtifactIds defines the comma separated list of artifactIds to exclude While any artifact can be excluded, this is designed to exclude provided-scoped dependencies that should not be bundled in the executable jar/war. The outcome of java -jar myapp.jar should be consistent with the run goal: these exclusions are therefore applied to the classpath that the run goal computes to launch the application. This commit also adds some integration tests and updates the plugin's documentation Fixes gh-649, gh-650 and gh-674
-
Phillip Webb authored
Update documentation to use a real auto-configure class. Fixes #791
-
Stephane Nicoll authored
-
Christian Dupuis authored
fixes #587 and #588
-
Christian Dupuis authored
fixes #791
-
Christian Dupuis authored
-
Andy Wilkinson authored
Upgrade Boot to use Groovy 2.3.0 and provide dependency management for all of Groovy's modules. Closes #647
-
- 05 May, 2014 13 commits
-
-
Phillip Webb authored
* module-version-mgt: Fixup reference guide following dependencies move Fixup POM harmonization Harmonized maven dependency management
-
Phillip Webb authored
Update reference guide to indicate that spring-boot-dependencies should be imported when not using the parent POM.
-
Phillip Webb authored
Fix POM harmonization so that the release process now prepares the dependencies POM rather than starter-parent
-
Stephane Nicoll authored
This commit harmonizes the dependency management of internal modules so that versions can be omitted everywhere. Update the maven coordinates to provide the full groupId for consistency
-
Stephane Nicoll authored
Freemarker integration tests now use a random port so boot builds properly when port 8080 is taken.
-
Phillip Webb authored
Update the reference guide to add a call-out to the new generated maven plugin site. Finishes gh-772
-
Phillip Webb authored
-
Phillip Webb authored
* pull780: Add multi-datasource health indicator support Add CompositeHealthIndicator
-
Tyler Frederick authored
Update EndpointAutoConfiguration to support multiple datasources. Fixes gh-783
-
Tyler Frederick authored
Add CompositeHealthIndicator that allows multiple HealthIndicators to be combined into a single result. Fixes gh-782
-
Phillip Webb authored
* docfix: Minor documentation fixes
-
Ger-Jan te Dorsthorst authored
Fixes gh-781
-
Stephane Nicoll authored
Previous to this commit, the remote shell security configuration described that a default password will be generated with no extra configuration. Actually, when Spring Security is configured for the application, the remote shell reuses that configuration by default. It turns out that the default log message is confusing as it was referring to "application endpoints". Updated that log to a more generic log message and updated doc accordingly. Fixes gh-779
-
- 04 May, 2014 2 commits
-
-
Marcel Overdijk authored
Fixes gh-778, Fixes gh-755
-
Marcel Overdijk authored
Fixes gh-776
-
- 02 May, 2014 11 commits
-
-
Phillip Webb authored
Add previously implicit <groupId>org.apache.maven.plugins</groupId> to plugin declarations.
-
Phillip Webb authored
-
Phillip Webb authored
Add spring-boot-docs to the default profile so that imports by default into eclipse.
-
Phillip Webb authored
Remove the filtering from test jars so Maven works in the same way as eclipse. Test jar filtering has now been setup on the CI server to prevent them from being published. Fixes gh-754
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Commit e26e06d5 broke the full build as the generated zip file for the size is not generated. Actually, the site plugin has a jar goal that is exactly meant for what we need to do. This commit removes the use of the assembly plugin and invokes the jar goal of the site plugin when the full profile is enabled. Relates to #749
-
Dave Syer authored
Extract into a utility to be shared between Shell and RunMojo Fixes gh-773
-
Stephane Nicoll authored
This commit adds the generated site for the maven plugin alongside the developer guide and javadoc. The maven plugin is available in the "/maven-plugin" context. The advanced information described in the developer guide have been migrated to the plugin site as most the information is taken from the code itself, which avoids duplication. Fixes #749
-
Phillip Webb authored
Fixes gh-759
-
Dave Syer authored
Fixes gh-771
-
Dave Syer authored
-