- 19 Mar, 2015 3 commits
-
-
Andy Wilkinson authored
Gradle’s plugin portal requires each plugin’s ID to be in a namespace. Our existing ID, spring-boot, does not meet this requirement. This commit changes the plugin’s ID to org.springframework.boot.spring-boot. Note that, as is recommended [1], the plugin’s ID does not include “gradle”. See gh-1567 [1] http://plugins.gradle.org/submit
-
Andy Wilkinson authored
Following the move to using the separate dependency management plugin this test is no longer valid. It should have been removed as part of 2c3c62d7 See gh-2133
-
Andy Wilkinson authored
This commit replaces Spring Boot's basic dependency management support with separate dependency management plugin. This has a number of benefits including: 1. A Maven bom can be used rather than a custom properties file 2. Dependency management is applied transitively rather than only to direct dependencies 3. Exclusions are applied as they would be in Maven 4. Gradle-generated poms are automatically configured with the appropriate dependency management Closes gh-2133
-
- 18 Mar, 2015 9 commits
-
-
Andy Wilkinson authored
The response produced by Spring Data REST to a search that will always return a single result, i.e. the return type is Foo rather than List<Foo> or Page<Foo> has improved in Fowler. Previously, the response would contain a single embedded resource. In Fowler, the response now contains the resource that used to be embedded as a top-level resource. This commit updates the expectations in one of the sample’s tests to match this new behaviour. See gh-2673
-
Andy Wilkinson authored
Closes gh-2681
-
Andy Wilkinson authored
Closes gh-2675
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Previously, only a handful of properties could be set when auto-configuring an Elasticsearch client. This commit introduces support for configuring arbitrary properties using the spring.data.elasticsearch.properties prefix. For example, client.transport.sniff can be configured using spring.data.elasticsearch.properties.client.transport.sniff. Closes gh-1838
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Using a Class reference can cause reflection problems at runtime (see gh-1065). Closes gh-2674
-
Andy Wilkinson authored
Closes gh-2332
-
Stephane Nicoll authored
Rework 7b2b1190 so that it is more aligned with others spring application events. Fix the package tangle by moving the publication part to EventPublishingRunListener. Closes gh-2638
-
- 17 Mar, 2015 18 commits
-
-
Andy Wilkinson authored
-
Dave Syer authored
-
Dave Syer authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Previously, a TransportClient sniff property could not be configured while using Spring Boot’s Elasticsearch auto-configuration. This commit adds a new property, spring.data.elasticsearch.client-transport-sniff, that can be used to configure the TransportClient while continuing to use the auto-configuration support. Closes gh-1838
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Wrap at 90 chars more consistently
-
izeye authored
Closes gh-2570
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Conflicts: spring-boot-dependencies/pom.xml
-
Andy Wilkinson authored
Closes gh-2582
-
Stephane Nicoll authored
* gh-2375: add spring-boot-sample-activemq
-
Eddú Meléndez authored
-
Phillip Webb authored
-
Phillip Webb authored
The actual required Spring Framework version is 4.1.5. See gh-2575
-
Phillip Webb authored
-
Phillip Webb authored
The example `@Value("server.local.port")` should read `@Value("${local.server.port}")`. Fixes gh-2628
-
Phillip Webb authored
Update HealthIndicatorAutoConfiguration to reduce the amount of duplication in inner configuration classes.
-
- 16 Mar, 2015 10 commits
-
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-2662
-
Andy Wilkinson authored
In ActiveMQ 5.11 the signature of PooledConnectionFactory.setConnectionFactory has changed. It now takes an Object rather than a ConnectionFactory. This change is not binary backwards compatible so it causes a NoSuchMethodError as we compile against 5.10. This commit updates ActiveMQConnectionFactoryConfiguration to call the setConnectionFactory method reflectively, looking for both the ConnectionFactory and Object variants. Closes gh-2640
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-2647
-