Andy Wilkinson
5b8a9bbe90
Upgrade to Spock 1.0
...
Closes gh-2951
10 years ago
Andy Wilkinson
04c68427d8
Upgrade to Spring Plugin 1.2.0.RELEASE
...
Closes gh-2605
10 years ago
Andy Wilkinson
3abac59e9c
Add dependency management for jackson-dataformat-csv
...
Closes gh-2760
10 years ago
Andy Wilkinson
f3af9a81c7
Upgrade to HikariCP 2.3.7
...
Closes gh-2863
10 years ago
Andy Wilkinson
296a9d6cf0
Upgrade to Spring AMQP 1.5.0.M1
...
Closes gh-2946
10 years ago
Andy Wilkinson
291173ddc6
Upgrade to JsonPath 2.0.0
...
Closes gh-2720
10 years ago
Andy Wilkinson
7a47c4b594
Add dependency management for org.apache.httpcomponents:httpcore
...
Without dependency management for org.apache.httpcomponents:httpcore,
it’s possible to get mismatched versions of httpcore and httpclient.
Closes gh-2941
10 years ago
Tommy Ludwig
a88be00b6c
Upgrade to Log4j2 version 2.2
...
Closes gh-2938
10 years ago
Davide Angelocola
c82224831a
Add dependency management for slf4j-simple
...
Closes gh-2934
10 years ago
Andy Wilkinson
5717c38c63
Upgrade to Apache HTTP Client 4.4.1
...
Closes gh-2941
10 years ago
Dave Syer
0bd845d183
Add support for Statsd metric export
10 years ago
Andy Wilkinson
5b30716d94
Merge branch '1.2.x'
10 years ago
Mario A. Alvarez Garcia
ca94bd4b94
Upgrade to Hibernate 4.3.9.Final
...
Closes gh-2928
10 years ago
Davide Angelocola
3179d278a2
Upgrade to SLF4J 1.7.12
...
Closes gh-2931
10 years ago
Andy Wilkinson
d3d5b211ed
Upgrade to Spring AMQP 1.4.5.RELEASE
...
Closes gh-2932
10 years ago
Andy Wilkinson
66be012e78
Upgrade to Undertow 1.1.4.Final
...
Closes gh-2754
10 years ago
Andy Wilkinson
51c49b69c5
Support bom-based dependency management in the CLI
...
Previously, the CLI’s dependency management used proprietary Properties
file-based metadata to configure its dependency management. Since
spring-boot-gradle-plugin’s move to using the separate dependency
management plugin the CLI was the only user of this format.
This commit updates the CLI to use Maven boms to configure its
dependency management. By default it uses the spring-boot-dependencies
bom. This configuration can be augmented and overridden using the new
@DependencyManagementBom annotation which replaces @GrabMetadata.
Closes gh-2688
Closes gh-2439
10 years ago
Andy Wilkinson
390e6fa690
Upgrade to Undertow 1.2.4.Final
10 years ago
Andy Wilkinson
f0c0742eaf
Merge branch '1.2.x'
10 years ago
Craig Walls
88d72e0598
Upgrade to Spring Social Facebook 2.0.1.RELEASE
...
While this is a breaking change, continuing with Spring Social
Facebook 1.1.x is also broken as it is no longer compatible with
Facebook's API. Upgrading to 2.0.1.RELEASE may require some changes
to be made to users' applications, but it will allow their
applications to use the Facebook API once again.
Closes gh-2837
10 years ago
Andy Wilkinson
9e05d5f30e
Merge branch '1.2.x'
10 years ago
pasali
1cc0b19f29
Upgrade to Dropwizard Metrics 3.1.2
...
Closes gh-2920
10 years ago
Andy Wilkinson
0f62f05cdc
Upgrade to Undertow 1.2.3.Final
...
Closes gh-2821
10 years ago
Andy Wilkinson
800ac2d13f
Upgrade to Spring Security 4.0.1.RELEASE
...
Closes gh-2885
10 years ago
Andy Wilkinson
563a032157
Start building against Spring AMQP 1.5 snapshots
...
See gh-2899
10 years ago
Andy Wilkinson
ee7c86a07d
Start building against Reactor 2.0.1 snapshots
...
See gh-2719
10 years ago
Andy Wilkinson
681894a1f3
Start building against Spring Integration 4.2.0 snapshots
...
See gh-2883
10 years ago
Andy Wilkinson
e6dfd7c533
Work around problems with GemFire 8.0’s dependencies
...
GemFire 8.0 depends on two different versions of xml-apis:xml-apis and
org.eclipse.jdt.core.compiler:ecj. This commit adds dependency
management for those two dependencies to address the dependency
convergence errors reported by Maven’s enforcer plugin.
GemFire 8.0 also depends on commons-logging and Spring Boot starters
should use jcl-over-slf4j instead. This commit adds an exclusion for
commons-logging
GemFire 8.0 depends (optionally) on spring-data-gemfire and
spring-data-gemfire depends on GemFire, i.e. there’s a dependency cycle
between the two projects. This commit breaks this cycle by adding an
exclusion for spring-data-gemfire to the dependency management for
com.gemstone.gemfire:gemfire.
This commit should be reverted once the problems with GemFire’s
dependencies have been addressed. See gh-2884.
10 years ago
Andy Wilkinson
aa3a5ab1b9
Align GemFire version with Spring Data GemFire in Fowler
...
Closes gh-2859
See gh-2673
10 years ago
Andy Wilkinson
606ad0d347
Merge branch '1.2.x'
10 years ago
Andy Wilkinson
3e3395304b
Upgrade to javax.mail:javax.mail-api 1.5.3
...
Closes gh-2835
10 years ago
Andy Wilkinson
cee8c5c1c3
Upgrade to Undertow 1.2.0.CR1
...
See gh-2821
10 years ago
Andy Wilkinson
734f5c39f7
Upgrade to Groovy 2.4.3
...
Closes gh-2819
10 years ago
Andy Wilkinson
7f3f0e6c75
Upgrade to Flyway 3.2.1
...
Closes gh-2675
10 years ago
Andy Wilkinson
d5c0884d3d
Merge branch '1.2.x'
...
Conflicts:
spring-boot-dependencies/pom.xml
10 years ago
Andy Wilkinson
2d7c0c2f00
Provide dependency management for Antlr 2
...
Hibernate depends on antlr:antlr:2.7.7 (the latest version on Antlr 2)
and fails with earlier 2.7.x versions due to a missing method. This
can cause problems for Maven users if they also depend on something that
pulls in an earlier version of Antlr, such as
spring-boot-starter-velocity. Gradle users are unaffected as, when
multiple versions of a dependency are found in the graph, Gradle will
choose the latest version.
This commit adds dependency management for antlr:antlr:2.7.7 to ensure
that the latest, and Hibernate compatible, version of Antlr 2 is used.
Closes gh-2814
10 years ago
Andy Wilkinson
ba3d4e9e3c
Upgrade to Spring Security 4
...
This commit updates Spring Boot to use Spring Security 4. As a result
of this, the coordinates of Thmyeleaf's Spring Security extra, for
which dependency management and auto-configuration is provided, have
been updated to the Spring Security 4 variant.
Closes gh-2727
10 years ago
Andy Wilkinson
d13878e193
Upgrade to Spring Data Fowler RELEASE
...
The versions in the dependency management for the various datastore
dependencies have been aligned with those used by Spring Data Fowler.
The Data REST tests and sample application has been updated to configure
the base path in favour of the deprecated base uri property
Closes gh-2673
10 years ago
Andy Wilkinson
03b109a2c8
Polish Elasticsearch health indicator
...
- Nest the configuration class in HealthIndicatorAutoConfiguration,
bringing it into line with the other health indicator configuration
classes
- Include the statistics from the response in the health’s details
- Map YELLOW to UP rather than UNKNOWN as it indicates that the cluster
is running but that “the primary shard is allocated but replicas are
not” [1]. The details can be used to determine the precise state of
the cluster.
- Add a property to configure the time that the health indicator will
wait to receive a response from the cluster
- Document the configuration properties
- Update the tests to cover the updated functionality
See gh-2399
[1] http://www.elastic.co/guide/en/elasticsearch/reference/1.x/cluster-health.html
10 years ago
izeye
60734548fe
Add dependency management for net.sourceforge.nekohtml:nekohtml
...
Closes gh-2615
10 years ago
Andy Wilkinson
8b1022effa
Upgrade to Spring Batch 3.0.4 snapshots
...
Closes gh-2712
10 years ago
Andy Wilkinson
e0d6ebca93
Merge branch '1.2.x'
...
Conflicts:
spring-boot-dependencies/pom.xml
10 years ago
Andy Wilkinson
c8c2eea03e
Upgrade to Spring Integration 4.1.3.RELEASE
...
Closes gh-2782
10 years ago
Andy Wilkinson
23da4ab95d
Update to Spring AMQP 1.4.4.RELEASE
...
Closes gh-2781
10 years ago
Andy Wilkinson
ddeebf2262
Update to Tomcat 8.0.21
...
Closes gh-2775
10 years ago
Phillip Webb
8143d1f36d
Apply animal sniffer to entire build
...
Move animal sniffer configuration out of spring-boot-dependencies to
spring-boot-parent and apply it to all projects.
See gh-716
10 years ago
Dave Syer
c9c1e8b517
Add animal sniffer for Java 6 and jdk1.8 to actuator
...
The build now requires java 8 (although no language features are yet
in use). Bamboo has been updated.
Fixes gh-716
10 years ago
Phillip Webb
5a08ca0b45
Merge branch '1.2.x'
...
Conflicts:
pom.xml
spring-boot-actuator/pom.xml
spring-boot-autoconfigure/pom.xml
spring-boot-cli/pom.xml
spring-boot-dependencies/pom.xml
spring-boot-deployment-tests/pom.xml
spring-boot-deployment-tests/spring-boot-deployment-test-tomcat/pom.xml
spring-boot-deployment-tests/spring-boot-deployment-test-tomee/pom.xml
spring-boot-deployment-tests/spring-boot-deployment-test-wildfly/pom.xml
spring-boot-docs/pom.xml
spring-boot-full-build/pom.xml
spring-boot-integration-tests/pom.xml
spring-boot-integration-tests/spring-boot-gradle-tests/pom.xml
spring-boot-integration-tests/spring-boot-security-tests/pom.xml
spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-tests-web-helloworld/pom.xml
spring-boot-parent/pom.xml
spring-boot-samples/pom.xml
spring-boot-samples/spring-boot-sample-actuator-log4j/pom.xml
spring-boot-samples/spring-boot-sample-actuator-log4j2/pom.xml
spring-boot-samples/spring-boot-sample-actuator-noweb/pom.xml
spring-boot-samples/spring-boot-sample-actuator-ui/pom.xml
spring-boot-samples/spring-boot-sample-actuator/build.gradle
spring-boot-samples/spring-boot-sample-actuator/build.xml
spring-boot-samples/spring-boot-sample-actuator/pom.xml
spring-boot-samples/spring-boot-sample-amqp/pom.xml
spring-boot-samples/spring-boot-sample-aop/pom.xml
spring-boot-samples/spring-boot-sample-atmosphere/pom.xml
spring-boot-samples/spring-boot-sample-batch/pom.xml
spring-boot-samples/spring-boot-sample-data-elasticsearch/pom.xml
spring-boot-samples/spring-boot-sample-data-gemfire/pom.xml
spring-boot-samples/spring-boot-sample-data-jpa/pom.xml
spring-boot-samples/spring-boot-sample-data-mongodb/pom.xml
spring-boot-samples/spring-boot-sample-data-redis/pom.xml
spring-boot-samples/spring-boot-sample-data-rest/pom.xml
spring-boot-samples/spring-boot-sample-data-solr/pom.xml
spring-boot-samples/spring-boot-sample-flyway/pom.xml
spring-boot-samples/spring-boot-sample-hateoas/pom.xml
spring-boot-samples/spring-boot-sample-hornetq/pom.xml
spring-boot-samples/spring-boot-sample-integration/pom.xml
spring-boot-samples/spring-boot-sample-jersey/pom.xml
spring-boot-samples/spring-boot-sample-jersey1/pom.xml
spring-boot-samples/spring-boot-sample-jetty-ssl/pom.xml
spring-boot-samples/spring-boot-sample-jetty/pom.xml
spring-boot-samples/spring-boot-sample-jetty8-ssl/pom.xml
spring-boot-samples/spring-boot-sample-jetty8/pom.xml
spring-boot-samples/spring-boot-sample-jpa/pom.xml
spring-boot-samples/spring-boot-sample-jta-atomikos/pom.xml
spring-boot-samples/spring-boot-sample-jta-bitronix/pom.xml
spring-boot-samples/spring-boot-sample-jta-jndi/pom.xml
spring-boot-samples/spring-boot-sample-liquibase/pom.xml
spring-boot-samples/spring-boot-sample-parent-context/pom.xml
spring-boot-samples/spring-boot-sample-profile/build.gradle
spring-boot-samples/spring-boot-sample-profile/pom.xml
spring-boot-samples/spring-boot-sample-secure/pom.xml
spring-boot-samples/spring-boot-sample-servlet/pom.xml
spring-boot-samples/spring-boot-sample-simple/build.gradle
spring-boot-samples/spring-boot-sample-simple/pom.xml
spring-boot-samples/spring-boot-sample-testng/pom.xml
spring-boot-samples/spring-boot-sample-tomcat-jsp/pom.xml
spring-boot-samples/spring-boot-sample-tomcat-multi-connectors/pom.xml
spring-boot-samples/spring-boot-sample-tomcat-ssl/pom.xml
spring-boot-samples/spring-boot-sample-tomcat/pom.xml
spring-boot-samples/spring-boot-sample-tomcat7-jsp/pom.xml
spring-boot-samples/spring-boot-sample-traditional/pom.xml
spring-boot-samples/spring-boot-sample-undertow-ssl/pom.xml
spring-boot-samples/spring-boot-sample-undertow/pom.xml
spring-boot-samples/spring-boot-sample-velocity/pom.xml
spring-boot-samples/spring-boot-sample-web-freemarker/pom.xml
spring-boot-samples/spring-boot-sample-web-groovy-templates/pom.xml
spring-boot-samples/spring-boot-sample-web-jsp/pom.xml
spring-boot-samples/spring-boot-sample-web-method-security/pom.xml
spring-boot-samples/spring-boot-sample-web-mustache/pom.xml
spring-boot-samples/spring-boot-sample-web-secure-custom/pom.xml
spring-boot-samples/spring-boot-sample-web-secure-jdbc/pom.xml
spring-boot-samples/spring-boot-sample-web-secure/pom.xml
spring-boot-samples/spring-boot-sample-web-static/build.gradle
spring-boot-samples/spring-boot-sample-web-static/pom.xml
spring-boot-samples/spring-boot-sample-web-ui/build.gradle
spring-boot-samples/spring-boot-sample-web-ui/pom.xml
spring-boot-samples/spring-boot-sample-web-velocity/pom.xml
spring-boot-samples/spring-boot-sample-websocket-jetty/pom.xml
spring-boot-samples/spring-boot-sample-websocket-tomcat/pom.xml
spring-boot-samples/spring-boot-sample-websocket-undertow/pom.xml
spring-boot-samples/spring-boot-sample-ws/pom.xml
spring-boot-samples/spring-boot-sample-xml/pom.xml
spring-boot-starters/pom.xml
spring-boot-starters/spring-boot-starter-actuator/pom.xml
spring-boot-starters/spring-boot-starter-amqp/pom.xml
spring-boot-starters/spring-boot-starter-aop/pom.xml
spring-boot-starters/spring-boot-starter-batch/pom.xml
spring-boot-starters/spring-boot-starter-cloud-connectors/pom.xml
spring-boot-starters/spring-boot-starter-data-elasticsearch/pom.xml
spring-boot-starters/spring-boot-starter-data-gemfire/pom.xml
spring-boot-starters/spring-boot-starter-data-jpa/pom.xml
spring-boot-starters/spring-boot-starter-data-mongodb/pom.xml
spring-boot-starters/spring-boot-starter-data-rest/pom.xml
spring-boot-starters/spring-boot-starter-data-solr/pom.xml
spring-boot-starters/spring-boot-starter-freemarker/pom.xml
spring-boot-starters/spring-boot-starter-groovy-templates/pom.xml
spring-boot-starters/spring-boot-starter-hateoas/pom.xml
spring-boot-starters/spring-boot-starter-hornetq/pom.xml
spring-boot-starters/spring-boot-starter-integration/pom.xml
spring-boot-starters/spring-boot-starter-jdbc/pom.xml
spring-boot-starters/spring-boot-starter-jersey/pom.xml
spring-boot-starters/spring-boot-starter-jetty/pom.xml
spring-boot-starters/spring-boot-starter-jta-atomikos/pom.xml
spring-boot-starters/spring-boot-starter-jta-bitronix/pom.xml
spring-boot-starters/spring-boot-starter-log4j/pom.xml
spring-boot-starters/spring-boot-starter-log4j2/pom.xml
spring-boot-starters/spring-boot-starter-logging/pom.xml
spring-boot-starters/spring-boot-starter-mail/pom.xml
spring-boot-starters/spring-boot-starter-mobile/pom.xml
spring-boot-starters/spring-boot-starter-mustache/pom.xml
spring-boot-starters/spring-boot-starter-parent/pom.xml
spring-boot-starters/spring-boot-starter-redis/pom.xml
spring-boot-starters/spring-boot-starter-remote-shell/pom.xml
spring-boot-starters/spring-boot-starter-security/pom.xml
spring-boot-starters/spring-boot-starter-social-facebook/pom.xml
spring-boot-starters/spring-boot-starter-social-linkedin/pom.xml
spring-boot-starters/spring-boot-starter-social-twitter/pom.xml
spring-boot-starters/spring-boot-starter-test/pom.xml
spring-boot-starters/spring-boot-starter-thymeleaf/pom.xml
spring-boot-starters/spring-boot-starter-tomcat/pom.xml
spring-boot-starters/spring-boot-starter-undertow/pom.xml
spring-boot-starters/spring-boot-starter-velocity/pom.xml
spring-boot-starters/spring-boot-starter-web/pom.xml
spring-boot-starters/spring-boot-starter-websocket/pom.xml
spring-boot-starters/spring-boot-starter-ws/pom.xml
spring-boot-starters/spring-boot-starter/pom.xml
spring-boot-tools/pom.xml
spring-boot-tools/spring-boot-configuration-processor/pom.xml
spring-boot-tools/spring-boot-dependency-tools/pom.xml
spring-boot-tools/spring-boot-gradle-plugin/pom.xml
spring-boot-tools/spring-boot-loader-tools/pom.xml
spring-boot-tools/spring-boot-loader/pom.xml
spring-boot-tools/spring-boot-maven-plugin/pom.xml
spring-boot-versions/pom.xml
spring-boot/pom.xml
10 years ago
Phillip Webb
42e69359a8
Fixup version numbers following release
10 years ago
Spring Buildmaster
e03c11dda8
Next development version
10 years ago