1.The word "SCCESSFUL" has a typo. The right word is "SUCCESSFUL".
2.Gradle outputs "BUILD SUCCESSFUL" instead of "BUILD SUCCESS" now. So
the "BUILD SUCCESS" message is wrong and the "BUILD SUCCESSFUL"
message is right.
Description / 详细说明
When I was reading this tutorial, I saw the following sentence in this file:
And the word BUILD SCCESS had a typo. Not only so, I found that BUILD SUCCESS was not outputted by Gradle and BUILD SUCCESSFUL was the right output. So I opened this PR to fix these mistakes.
Justification / 理由
BUILD SCCESS had a typo.
BUILD SUCCESS is not right.
Remarks / 备注
The Gradle log output (using IntelliJ IDEA):
下午1:12:15: Executing task ':classes'...
> Configure project :
This mapping 'snapshot_20171003' was designed for MC 1.12! Use at your own peril.
> Task :deobfCompileDummyTask
> Task :deobfProvidedDummyTask
> Task :sourceApiJava UP-TO-DATE
> Task :compileApiJava NO-SOURCE
> Task :processApiResources NO-SOURCE
> Task :apiClasses UP-TO-DATE
> Task :sourceMainJava
> Task :compileJava
> Task :processResources UP-TO-DATE
> Task :classes
Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0.
See https://docs.gradle.org/4.8.1/userguide/command_line_interface.html#sec:command_line_warnings
BUILD SUCCESSFUL in 40s
6 actionable tasks: 4 executed, 2 up-to-date
下午1:12:56: Task execution finished ':classes'.
Synopsis / 简介
1.The word "SCCESSFUL" has a typo. The right word is "SUCCESSFUL".
2.Gradle outputs "BUILD SUCCESSFUL" instead of "BUILD SUCCESS" now. So the "BUILD SUCCESS" message is wrong and the "BUILD SUCCESSFUL" message is right.
Description / 详细说明
When I was reading this tutorial, I saw the following sentence in this file:
And the word
BUILD SCCESS
had a typo. Not only so, I found thatBUILD SUCCESS
was not outputted by Gradle andBUILD SUCCESSFUL
was the right output. So I opened this PR to fix these mistakes.Justification / 理由
BUILD SCCESS
had a typo.BUILD SUCCESS
is not right.Remarks / 备注
The Gradle log output (using IntelliJ IDEA):