seongwoon.lee
762793b812
Remove a redundant trailing slash in doc
...
Closes gh-12365
7 years ago
Stephane Nicoll
24402aaf02
Merge branch '1.5.x'
7 years ago
Stephane Nicoll
f8c1821c2c
Polish
...
See gh-12365
7 years ago
Stephane Nicoll
7a88fe692d
Polish Quartz dependency management
...
Closes gh-12364
7 years ago
Stephane Nicoll
326c1e123c
Merge branch '1.5.x'
7 years ago
Stephane Nicoll
66d1f5cd0b
Fix expansion of static-locations array
...
This commit fixes a NPE when the static-locations array of
`ResourceProperties` has to be expanded as the setter is cleaning the
values of the array and is affected by a non-intuitive behaviour of the
binder.
When the binder needs to set an element of an array and the size of the
array isn't large enough, the binder proceeds as follows:
* An array of the required size is created
* The content of the original array is copied over
* The setter of the property is invoked with the new array
* The setter of the property is invoked and the returned array is
mutated to set the requested value
While one would expect the array to contain the requested value when the
setter is invoked, this is not the case. Also, the array might contain
null values if a value at index 8 should be set and the array has a size
of 3.
All in all, `ResourceProperties#appendSlashIfNecessary` has to account
for `null` and an additional round of cleaning has to happen once
binding has completed.
Closes gh-12360
7 years ago
Stephane Nicoll
6f7501f62b
Remove my clone
7 years ago
Madhura Bhave
e6eca04af2
Make EndpointRequestMatcher#excluding public
...
Fixes gh-12354
7 years ago
Madhura Bhave
44c48ec5a8
Merge pull request #12350 from inaba jun
7 years ago
Madhura Bhave
4ca1e6ae4e
Polish "Fix typo in TestDatabaseAutoConfiguration"
...
Closes gh-12350
7 years ago
inabajunmr
ddd8598e2e
Fix typo in TestDatabaseAutoConfiguration failure msg
...
See gh-12350
7 years ago
Madhura Bhave
b6e09e8311
Merge branch '1.5.x'
7 years ago
Madhura Bhave
758dca57f1
Clarify documentation for setting the LoggingSystem
...
Closes gh-12299
7 years ago
Andy Wilkinson
d00d1da27a
Upgrade to Maven Javadoc Plugin 3.0.0
...
Closes gh-12345
7 years ago
Andy Wilkinson
c588091bab
Merge branch '1.5.x'
7 years ago
Andy Wilkinson
84387046b9
Start building against Spring Framework 4.3.15 snapshots
...
See gh-12344
7 years ago
Andy Wilkinson
cf2577d7da
Merge pull request #12342 from Cristian Greco
...
* gh-12342:
Fix link to Spring Data JPA in docs
7 years ago
Cristian Greco
b552842b9d
Fix link to Spring Data JPA in docs
...
Closes gh-12342
7 years ago
Andy Wilkinson
f918e0eb6a
Merge branch '1.5.x'
7 years ago
Andy Wilkinson
eee891dbc8
Decode file: URLs passed into PropertiesLauncher via loader.path
...
Closes gh-12325
7 years ago
Andy Wilkinson
85900796d3
Remove stale tip about ManagementContextConfiguration for endpoints
...
Closes gh-12312
7 years ago
Andy Wilkinson
2c882a47d0
Merge pull request #12324 from Jon Schneider
...
* gh-12324:
Polish "Improve docs on custom metrics"
Improve docs on custom metrics
7 years ago
Andy Wilkinson
d7499387d8
Polish "Improve docs on custom metrics"
...
Closes gh-12324
7 years ago
Jon Schneider
25ff82f1d7
Improve docs on custom metrics
...
See gh-12324
7 years ago
Andy Wilkinson
ff5dd747f9
Merge pull request #12337 from Christoph Dreis
...
* gh-12337:
Remove workaround for JDK-8023130 in RunProcess
7 years ago
dreis2211
3adced9962
Remove workaround for JDK-8023130 in RunProcess
...
With JDK 8 being the baseline and JDK 7 not being supported anymore we
can get rid of the workaround for a JDK 7 bug in
ProcessBuilder.inheritIO on Windows machines.
Closes gh-12337
7 years ago
Andy Wilkinson
9882d87e1b
Start building against Spring Framework 5.0.5 snapshots
...
See gh-12340
7 years ago
Stephane Nicoll
6533278191
Update reference guide to stop mentioning setWebEnvironment
...
Closes gh-12330
7 years ago
Andy Wilkinson
82c95e136f
Avoid problems with Failsafe when building samples with JDK 10
...
See gh-12028
7 years ago
Andy Wilkinson
065456a4af
Make JAX-B available to Jersey sample when building with JDK 10
...
See gh-12028
7 years ago
Andy Wilkinson
1bd0313c3d
Avoid problems with Surefire when building samples with JDK 10
...
See gh-12028
7 years ago
Andy Wilkinson
1f5143de70
Avoid problems with Failsafe when building with JDK 10
...
See gh-12028
7 years ago
Andy Wilkinson
d30c1fd9f8
Make javadoc plugin use Java 10-compatible version of Commons Lang 3
...
See gh-12028
7 years ago
Andy Wilkinson
4aa947c227
Use a Java 10-compatibile version of Maven’s site plugin
...
See gh-12028
7 years ago
Stephane Nicoll
6e6add294b
Merge pull request #12326 from izeye:polish-20180303
...
* pr/12326:
Polish contribution
Polish
7 years ago
Stephane Nicoll
7f5b7a6b47
Polish contribution
...
Closes gh-12326
7 years ago
Johnny Lim
751c444166
Polish
...
See gh-12326
7 years ago
Madhura Bhave
1c27a8e6e2
Move tests to ApplicationContextRunner
7 years ago
Andy Wilkinson
3370c23ab9
Skip the Gradle plugin when building with the full profile and JDK 10
...
See gh-12028
7 years ago
Andy Wilkinson
2b1252e282
Skip the Gradle Plugin when building with JDK 10
...
Previously, the JDK 10 build would fail as we build the plugin using
Gradle 4.0.x (the lowest version of Gradle that we support) and
Gradle 4.0.x doesn't work with Java 10.
Upgrading to Gradle 4.1, which appears to work with Java 10, was
considered but rejected for now as it introduces the risk that we
inadvertently use an API that's new in 4.1 and break our 4.0 support.
This commit goes for the extreme option and disables building the
Gradle Plugin when building with JDK.
See gh-12028
7 years ago
Andy Wilkinson
20654b9bc9
Remove no longer needed AspectJ version override with JDK 9+
...
See gh-12028
7 years ago
Andy Wilkinson
f7c8be1877
Apply java9 profile to JDK 10 (and later) as well as JDK 9
...
See gh-12028
7 years ago
Andy Wilkinson
7fdc26351a
Upgrade to Kotlin 1.2.30
...
Closes gh-12320
See gh-12028
7 years ago
Andy Wilkinson
a7d05d4276
Avoid SUREFIRE-1439 by using 2.21.0-SNAPSHOT when building with JDK 10
...
See gh-12028
7 years ago
Andy Wilkinson
f80343b2ea
Use the correct tag for JDK 10 EA 32
...
See gh-12028
7 years ago
Andy Wilkinson
dfbababd11
Add a JDK 10 build to the CI pipeline
...
Closes gh-12028
7 years ago
Andy Wilkinson
9f7e840416
Improve documentation for using configuration processor with Gradle
...
Closes gh-12316
7 years ago
Andy Wilkinson
4a3e0a231c
Test the Gradle plugin against Gradle 4.6
...
Closes gh-12314
7 years ago
Andy Wilkinson
e4a1fed3b8
Test the Gradle plugin against Gradle 4.6
7 years ago
Andy Wilkinson
188d120c9c
Test the Gradle plugin against Gradle 4.5.1
...
Closes gh-12315
7 years ago