Commit Graph

11786 Commits

Author SHA1 Message Date
Andy Wilkinson 478b0cf702 Upgrade to Selenium 3.3.1
Closes gh-8857
2017-04-07 11:47:40 +01:00
Andy Wilkinson 1f73e79c18 Upgrade to Selenium Htmlunit 2.26
Closes gh-8856
2017-04-07 11:47:40 +01:00
Andy Wilkinson d1adeb934f Upgrade to Janino 3.0.7
Closes gh-8855
2017-04-07 11:47:40 +01:00
Andy Wilkinson d43a75f0b7 Upgrade to Log4j2 2.8.2
Closes gh-8854
2017-04-07 11:47:39 +01:00
Andy Wilkinson cb34189c66 Upgrade to Htmlunit 2.26
Closes gh-8853
2017-04-07 10:50:36 +01:00
Andy Wilkinson 7ce8fd3524 Upgrade to Byte Buddy 1.6.12
Closes gh-8852
2017-04-07 10:50:36 +01:00
Andy Wilkinson d427e51452 Upgrade to Rxjava2 2.0.8
Closes gh-8851
2017-04-07 10:50:36 +01:00
Andy Wilkinson edd3c4514d Upgrade to Javax Mail 1.6.0-rc1
Closes gh-8850
2017-04-07 10:50:35 +01:00
Andy Wilkinson 3aae48e3b1 Upgrade to Couchbase Client 2.4.4
Closes gh-8849
2017-04-07 10:50:35 +01:00
Andy Wilkinson 62fcae3d5e Upgrade to Logback 1.2.3
Closes gh-8848
2017-04-07 10:50:35 +01:00
Andy Wilkinson b16fcf8269 Merge branch '1.5.x' 2017-04-07 10:43:49 +01:00
Andy Wilkinson ddd3f8ee6e Upgrade to Narayana 5.5.6.Final
Closes gh-8847
2017-04-07 10:42:45 +01:00
Andy Wilkinson 18f0e95442 Upgrade to Ehcache3 3.2.2
Closes gh-8846
2017-04-07 10:42:44 +01:00
Andy Wilkinson 82b809229e Upgrade to Undertow 1.4.12.Final
Closes gh-8845
2017-04-07 10:42:44 +01:00
Andy Wilkinson cf169e79b9 Upgrade to Hazelcast 3.7.7
Closes gh-8844
2017-04-07 10:42:44 +01:00
Stephane Nicoll 2d169d526a Merge branch '1.5.x' 2017-04-07 10:05:40 +02:00
Stephane Nicoll fffb53ccf5 Fix neo4j embedded documentation
The neo4j embedded driver no longer embeds the neo4j kernel and users are
expected to add that dependency manually. We don't provide dependency
management for any of them so this commit updates the documentation to
refers to the official documentation.

Closes gh-8567
2017-04-07 10:04:41 +02:00
Andy Wilkinson fbd296873a Merge branch '1.5.x' 2017-04-06 21:49:02 +01:00
Andy Wilkinson 13a3f7c0c1 Merge branch '1.4.x' into 1.5.x 2017-04-06 21:47:24 +01:00
Andy Wilkinson 54939479fc Merge branch '1.5.x' 2017-04-06 21:45:38 +01:00
Andy Wilkinson 18e112821f Merge branch '1.4.x' into 1.5.x 2017-04-06 21:45:29 +01:00
Andy Wilkinson d45d94520e Upgrade to Jolokia 1.3.6
Closes gh-8841
2017-04-06 20:27:47 +01:00
Andy Wilkinson f8767cc96e Upgrade to Freemarker 2.3.26-incubating
Closes gh-8840
2017-04-06 20:27:47 +01:00
Andy Wilkinson 2300dae88c Upgrade to Jetty 9.3.18.v20170406
Closes gh-8839
2017-04-06 20:27:47 +01:00
Andy Wilkinson 1375dfe102 Upgrade to Aspectj 1.8.10
Closes gh-8838
2017-04-06 20:27:47 +01:00
Andy Wilkinson 408b3c81df Upgrade to Tomcat 8.5.13
Closes gh-8837
2017-04-06 20:27:47 +01:00
Andy Wilkinson fe5e04c963 Upgrade to Hazelcast 3.6.8
Closes gh-8836
2017-04-06 20:27:47 +01:00
Andy Wilkinson d49a41e8cf Upgrade to Appengine 1.9.51
Closes gh-8835
2017-04-06 20:27:47 +01:00
Andy Wilkinson 5f77ef25e4 Upgrade to Jackson 2.8.8
Closes gh-8834
2017-04-06 20:27:47 +01:00
Andy Wilkinson f03daae02c Revert "Work around https://issues.jboss.org/browse/WFLY-8515"
This reverts commit 874b1f4870. A
change has been made to Spring Framework to work around the problem.
As a result, this workaround is no longer necessary.
2017-04-06 13:24:32 +01:00
Andy Wilkinson f0c5372642 Align with Spring Framework 5's new Commons Logging adapter
Closes gh-8825
2017-04-06 13:22:53 +01:00
Andy Wilkinson 0186fb2e84 Fail fast when plugin is used with an unsupported version of Gradle
Closes gh-8820
2017-04-06 09:10:07 +01:00
Andy Wilkinson 874b1f4870 Work around https://issues.jboss.org/browse/WFLY-8515 2017-04-05 16:37:06 +01:00
Stephane Nicoll a2a30cd3c0 Merge pull request #8808 from vpavic:upgrade-hazelcast
* pr/8808:
  Upgrade to Hazelcast 3.8
2017-04-05 14:21:20 +02:00
Vedran Pavic 2667b7f51c Upgrade to Hazelcast 3.8
Closes gh-8808
2017-04-05 14:21:00 +02:00
Andy Wilkinson ab18901ad0 Ensure that entry is completely configured before putting to the stream
Previously, BootZipCopyAction would put the next entry to the stream
and then, in the case of a stored entry, configure its size, CRC32
etc. This had the benefit of being able to copy the entry into the
zip once, capturing its bytes for the calculation of the CRC32 as it
was copied. Unfortunately, while this produced zip files that could
be read by the JVM, other zip tools failed. For example, Go's zip
support that's used by CloudFoundry could not unzip the archive.

This commit updates BootZipCopy action to completely configure the
entry before putting it to the stream. This has the downside of
copying the file twice (once for the CRC32 and once to actually write
it to the zip stream) but this appears to be unavoidable as we have to
produce archives that can be unzipped without problems on all
platforms.

Closes gh-8816
2017-04-05 13:03:03 +01:00
Andy Wilkinson 2f64cdfa98 Include directory entries when copying loader into a Boot archive
See gh-8816
2017-04-05 13:02:57 +01:00
Andy Wilkinson 15d6c9d5c7 Merge pull request #8818 from Johnny Lim
* gh-8818:
  Fix typos in new Gradle plugin
2017-04-05 12:30:25 +01:00
Johnny Lim 8d921d49aa Fix typos in new Gradle plugin
Closes gh-8818
2017-04-05 12:29:52 +01:00
Andy Wilkinson 5bc721f3ad Polish Gradle plugin's documentation 2017-04-05 12:25:47 +01:00
Phillip Webb 2de7e9c310 Merge branch '1.5.x' 2017-04-04 10:07:38 -07:00
Phillip Webb 3b93bb46e0 Revert accidental call to `.close()`
Remove call to `.close()` which was accidentally left in after some
performance testing.
2017-04-04 09:56:03 -07:00
Phillip Webb ad38776de3 Polish 2017-04-04 09:48:10 -07:00
Andy Wilkinson 5cb1f3209e Reinstate Verify.java that was removed in 47c0c3c0 2017-04-04 17:38:51 +01:00
Phillip Webb ddcb5ee328 Polish 2017-04-04 09:36:27 -07:00
Andy Wilkinson 395db8711c Merge branch '1.5.x' 2017-04-04 17:03:13 +01:00
Andy Wilkinson df6167dd71 Merge branch '1.4.x' into 1.5.x 2017-04-04 17:02:58 +01:00
Andy Wilkinson 9374020b0e Stop -> from being replaced with → as the latter renders as # in PDF
Closes gh-8575
2017-04-04 17:00:16 +01:00
Andy Wilkinson 7f5ca24ff9 Make Maven Central available to Gradle plugin's build 2017-04-04 16:47:05 +01:00
Andy Wilkinson 4a3d389bc3 Merge branch 'gradle-plugin-rewrite' 2017-04-04 16:37:09 +01:00