Sam Brannen
f746e9df82
Upgrade to Gradle 5.6.4
5 years ago
Sam Brannen
243f2890ee
Upgrade to Gradle 5.6.3
5 years ago
Sam Brannen
9e066e5272
Revert "Upgrade to Gradle 5.6.3"
...
This reverts commit 8e72722d7f
.
5 years ago
Sam Brannen
8e72722d7f
Upgrade to Gradle 5.6.3
5 years ago
Sam Brannen
807e1d3367
Upgrade to Gradle 5.6.2
...
See gh-23479
5 years ago
Sam Brannen
5af4d22044
Upgrade to Gradle 5.6.1
...
See gh-23479
5 years ago
Sam Brannen
063233afb5
Upgrade to Gradle 5.6
...
Closes gh-23479
5 years ago
Sam Brannen
01125a571c
Upgrade to Gradle 5.5.1
...
See gh-23214
5 years ago
Sam Brannen
ba95818b1d
Upgrade to Gradle 5.5
...
Closes gh-23214
5 years ago
Sebastien Deleuze
f5816c9219
Upgrade Gradle to 5.4.1
6 years ago
Sam Brannen
c99d904665
Upgrade to Gradle 5.4
...
Closes gh-22805
6 years ago
Sam Brannen
09690f2750
Upgrade to Gradle 5.3.1
...
See gh-22347
6 years ago
Sam Brannen
57ab877f0d
Upgrade to Gradle 5.3
...
Closes gh-22347
6 years ago
Juergen Hoeller
2f04cbba51
Upgrade to Gradle 4.10.3
...
Issue: SPR-17155
6 years ago
Stephane Nicoll
093a863906
Upgrade to Gradle 4.10.2
6 years ago
Juergen Hoeller
9cb8b4bb0a
Upgrade to Gradle 4.10.1
...
Issue: SPR-17155
6 years ago
Sam Brannen
a689daadf9
Complete upgrade to Gradle 4.10
...
Issue: SPR-17155
6 years ago
Sebastien Deleuze
fb3c1881ca
Upgrade to Gradle 4.10
...
Issue: SPR-17155
6 years ago
Sam Brannen
853d30df26
Complete the upgrade to Gradle 4.8.1
...
This commit upgrades the gradle-wrapper.jar.
Issue: SPR-16475
6 years ago
Juergen Hoeller
eaffcbe3be
Upgrade to Gradle 4.8.1
...
Includes Kotlin 1.2.50, RxJava 2.1.15 and Protobuf 3.6.
Issue: SPR-16475
6 years ago
Sam Brannen
2390695804
Upgrade to Gradle 4.8
7 years ago
Sam Brannen
5811d13d6c
Upgrade to Gradle 4.7
7 years ago
Thor Andreas Rognan
17c16eaa9e
Upgrade to Gradle 4.6
...
Issue: SPR-16475
7 years ago
Juergen Hoeller
425a999d5e
Upgrade to Gradle 4.4.1 (and Netty 4.1.19)
...
Issue: SPR-16237
7 years ago
Juergen Hoeller
d198626618
Upgrade to Gradle 4.4 (and Apache HttpClient 4.5.4)
...
Issue: SPR-16237
7 years ago
Juergen Hoeller
423af674cd
Upgrade to Gradle 4.3.1 (and Netty 4.1.17)
...
Issue: SPR-16080
7 years ago
Juergen Hoeller
ba74e42808
Upgrade to Gradle 4.2.1
...
Issue: SPR-15985
7 years ago
Juergen Hoeller
95fdfac128
Upgrade to Gradle 4.2 (and Netty 4.1.16)
...
Issue: SPR-15985
7 years ago
Juergen Hoeller
48f95e9b96
Upgrade to Gradle 4.1
...
Issue: SPR-15667
7 years ago
Juergen Hoeller
098ff6f0f8
Compatibility with JDK 9 release candidate build (175)
...
Includes upgrade to Objenesis 2.6, Gradle 3.5.1, RxJava 2.1.1, JSON Binding API 1.0 final.
Issue: SPR-15686
Issue: SPR-15600
7 years ago
Sam Brannen
f5fe3f0f97
Upgrade to Gradle 3.5
...
Issue: SPR-15383
8 years ago
Juergen Hoeller
b3ad4229f5
Upgrade to Gradle 3.4 final (and Hibernate ORM 5.2.8)
...
Issue: SPR-15207
8 years ago
Rob Winch
4999898617
Update to Gradle 3.4-rc-2
...
We need to explicitly apply Dependency Management to the root
project since it depends on modules that use dependency management.
We need to ensure dependency management is applied after propdeps-maven
to avoid an ordering issue [1]
An update to propdeps was necessary to be compatable with Gradle
3.4+
[1] https://github.com/spring-gradle-plugins/dependency-management-plugin/issues/149
Issue: SPR-15207
8 years ago
Juergen Hoeller
4d6c1d0d3f
Upgrade to Gradle 3.3
...
Issue: SPR-15138
8 years ago
Stephane Maldini
099f5a254e
Upgrade to reactor-netty/-ipc to 0.6 snapshots
8 years ago
Stephane Nicoll
57130b2d10
Upgrade to Gradle 3.2.1
...
Issue: SPR-14906
8 years ago
Sam Brannen
669fd80854
Upgrade build to Gradle 3.0
...
Issue: SPR-14569
8 years ago
Sam Brannen
afbd57c8af
Upgrade to Gradle 2.14.1
...
Issue: SPR-14362
8 years ago
Sebastien Deleuze
7ad02490d9
Upgrade build to Gradle 2.14.1
8 years ago
Sam Brannen
3aefa136fd
Upgrade build to Gradle 2.14
...
Issue: SPR-14362
8 years ago
Sam Brannen
9001af7efb
Revert build to Gradle 2.13
...
Issue: SPR-14362
9 years ago
Sam Brannen
2fd4462268
Upgrade build to Gradle 2.14
...
In the process of upgrading the build to use Gradle 2.14, the
setFieldOnLegacyEntityWithSideEffectsInToString() test method in
ReflectionTestUtilsTests began to fail. The reason is that the log
level for ReflectionTestUtils is now DEBUG by default with Gradle 2.14.
The apparent cause is that log4j was present on the test runtime
classpath for the spring-test module with all previous versions of
Gradle (via a transitive optional dependency from another project that
spring-test depends on). Thus the configuration in log4j.properties in
spring-test was previously honored, but with Gradle 2.14 a different
commons logging implementation is picked up.
Thus, in addition to upgrading the build to Gradle 2.14, this commit
introduces an explicit test runtime dependency on log4j in the
spring-test module.
The discovered bug in ReflectionTestUtils regarding DEBUG log level
will be addressed separately.
Issue: SPR-14362
9 years ago
Juergen Hoeller
bb1a0311d8
Upgrade to Gradle 2.13
...
Issue: SPR-14215
9 years ago
Stephane Nicoll
2152f436f9
Upgrade to Gradle 2.12
...
Issue: SPR-14048
9 years ago
Juergen Hoeller
1ce9788a66
Upgrade to Gradle 2.10
...
Issue: SPR-13484
9 years ago
Sam Brannen
c1b5262824
Upgrade to Gradle 2.5
...
Issue: SPR-13012
9 years ago
Sam Brannen
ed60b8cf5b
Upgrade build to Gradle 2.4
...
Issue: SPR-12772
10 years ago
Stephane Nicoll
3662ad4f94
Upgrade to gradle 2.2.1
...
Issue: SPR-11934
10 years ago
Stephane Nicoll
7ce709309d
Switch to full gradle version
10 years ago
Juergen Hoeller
e84f61bb9d
Upgraded to Gradle 1.12 and updated several dependencies to latest maintenance releases
11 years ago