Stephane Nicoll
dac3810bc1
Fixup version numbers following release
8 years ago
Spring Buildmaster
2a83e80a9b
Next Development Version
8 years ago
Stephane Nicoll
bd0c1cb9c3
Fixup version numbers following release
8 years ago
Spring Buildmaster
ed1ce140c0
Next Development Version
8 years ago
Phillip Webb
c3edf9e341
Fixup version numbers following release
8 years ago
Spring Buildmaster
9057f9ae1f
Next development version
8 years ago
Stephane Nicoll
72e696bcbd
Fixup version numbers following release
8 years ago
Spring Buildmaster
e712a9ba8c
Next Development Version
8 years ago
Andy Wilkinson
ad3e5c04bb
Add a second, portal-compatible ID to the Gradle plugin
...
To be compatible with Gradle's plugin portal, plugins must have an
ID that uses a reverse domain name. This means that spring-boot is
not compatible.
This commit introduces a new ID, org.springframework.boot, and
deprecates the old ID.
Closes gh-6997
8 years ago
Stephane Nicoll
6bd670edbc
Initiate 1.4.x branch
8 years ago
Andy Wilkinson
10402a651f
Close context to ensure that logging system is cleaned up
...
See gh-6688
8 years ago
Phillip Webb
c7a23eae56
Fixup version numbers following release
8 years ago
Spring Buildmaster
334baaeffd
Next development version
8 years ago
Phillip Webb
2f815a907a
Migrate existing tests from deprecated package
...
Update the existing tests to use the relocated `spring-boot-test`
classes. Restructuring was achieved using the following command:
find . -type f -name '*.java' -exec sed -i '' \
-e s/org.springframework.boot.test.ConfigFileApplicationContextInitializer/\
org.springframework.boot.test.context.ConfigFileApplicationContextInitializer/g \
-e s/org.springframework.boot.test.EnvironmentTestUtils/\
org.springframework.boot.test.util.EnvironmentTestUtils/g \
-e s/org.springframework.boot.test.IntegrationTest/\
org.springframework.boot.test.context.IntegrationTest/g \
-e s/org.springframework.boot.test.IntegrationTestPropertiesListener/\
org.springframework.boot.test.context.IntegrationTestPropertiesListener/g \
-e s/org.springframework.boot.test.OutputCapture/\
org.springframework.boot.test.rule.OutputCapture/g \
-e s/org.springframework.boot.test.SpringApplicationConfiguration/\
org.springframework.boot.test.context.SpringApplicationConfiguration/g \
-e s/org.springframework.boot.test.SpringApplicationContextLoader/\
org.springframework.boot.test.context.SpringApplicationContextLoader/g \
-e s/org.springframework.boot.test.SpringBootMockServletContext/\
org.springframework.boot.test.mock.web.SpringBootMockServletContext/g \
-e s/org.springframework.boot.test.TestRestTemplate/\
org.springframework.boot.test.web.client.TestRestTemplate/g \
-e s/org.springframework.boot.test.WebIntegrationTest/\
org.springframework.boot.test.context.web.WebIntegrationTest/g {} \;
See gh-5293
9 years ago
Phillip Webb
fbaf209240
Move master to 1.4.0.BUILD-SNAPSHOT
9 years ago
Phillip Webb
c77a7e0cba
Fixup version numbers following release
9 years ago
Spring Buildmaster
504d3e97ba
Next development version
9 years ago
Stephane Nicoll
ecf56f0708
Fixup version numbers following release
9 years ago
Spring Buildmaster
8db59059a5
Next Development Version
9 years ago
Stephane Nicoll
e19d9ff09d
Fix gradle config for the bootRun task
...
Closes gh-4627
9 years ago
Stephane Nicoll
14e7b10310
Fixup version numbers following release
9 years ago
Spring Buildmaster
3f6f57a80e
Next Development Version
9 years ago
Phillip Webb
634bb770b2
Organize imports with new settings
...
See gh-4234
9 years ago
Phillip Webb
f3f562f386
Support <springProfile> in logback configurations
...
Include support for a new <springProfile> element which can be used in
`logback-spring.xml` files to selectively enable or disable parts of the
configuration. For example:
<configuration>
...
<springProfile name="staging">
<logger name="sample.logback" level="TRACE" />
</springProfile>
...
</configuration>
Fixes gh-3338
10 years ago
Phillip Webb
5bc8f0f708
Add logback sample application
...
Add a logback sample application to demonstrate how `logback-spring.xml`
can be used for customization.
See gh-2558
10 years ago