Skip to content

Commit

Permalink
MINOR: Bump Gradle version to 5.0 (apache#5964)
Browse files Browse the repository at this point in the history
Gradle 5.0 was released on 26 November. See the release notes for enhancements and fixes: https://docs.gradle.org/5.0/release-notes.html.

A notable bugfix ensures that Javadoc artifacts are cleaned between builds.

The upgraded wrapper was spot-checked against the commands in the README and the
README was updated not to use removed system property `-Dtest.single`.

Reviewers: Ismael Juma <[email protected]>
  • Loading branch information
colinhicks authored and ijuma committed Nov 30, 2018
1 parent bfbc32d commit 4a0fd4c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Follow instructions in http://kafka.apache.org/documentation.html#quickstart
./gradlew cleanTest integrationTest

### Running a particular unit/integration test ###
./gradlew -Dtest.single=RequestResponseSerializationTest core:test
./gradlew clients:test --tests RequestResponseTest

### Running a particular test method within a unit/integration test ###
./gradlew core:test --tests kafka.api.ProducerFailureHandlingTest.testCannotSendToInternalTopic
Expand All @@ -54,7 +54,7 @@ Follow instructions in http://kafka.apache.org/documentation.html#quickstart
### Running a particular unit/integration test with log4j output ###
Change the log4j setting in either `clients/src/test/resources/log4j.properties` or `core/src/test/resources/log4j.properties`

./gradlew -i -Dtest.single=RequestResponseSerializationTest core:test
./gradlew clients:test --tests RequestResponseTest

### Generating test coverage reports ###
Generate coverage reports for the whole project:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ allprojects {
}

ext {
gradleVersion = "4.10.2"
gradleVersion = "5.0"
minJavaVersion = "8"
buildVersionFileName = "kafka-version.properties"

Expand Down

0 comments on commit 4a0fd4c

Please sign in to comment.