Fix build.gradle Syntax Error - #10
Open
zmr-233 wants to merge 2 commits into
Open
Conversation
Owner
|
First of all thank you! Is there any reason this is necessary? Gradle seems to allow for all kinds of formatting styles. Also unfortunately I pushed something to my repo without thinking causing this conflict. No idea how to solve it, I could also copy your file contents and merge it that way. |
CreativeMD
force-pushed
the
1.21
branch
3 times, most recently
from
May 27, 2025 11:24
8ee21fb to
20d56e5
Compare
CreativeMD
force-pushed
the
1.21
branch
6 times, most recently
from
August 14, 2025 13:54
fe57b83 to
abf7a94
Compare
CreativeMD
force-pushed
the
1.21
branch
3 times, most recently
from
August 29, 2025 11:21
1857a2b to
09210d6
Compare
CreativeMD
force-pushed
the
1.21
branch
2 times, most recently
from
September 12, 2025 14:46
9390821 to
716b0da
Compare
CreativeMD
force-pushed
the
1.21
branch
2 times, most recently
from
September 18, 2025 12:39
ebbf66b to
47468be
Compare
CreativeMD
force-pushed
the
1.21
branch
2 times, most recently
from
September 30, 2025 20:16
b0e5528 to
78c700c
Compare
CreativeMD
force-pushed
the
1.21
branch
3 times, most recently
from
November 15, 2025 22:53
8c0c013 to
478fb6b
Compare
CreativeMD
force-pushed
the
1.21
branch
2 times, most recently
from
December 2, 2025 15:57
b211f33 to
d7ef1d2
Compare
CreativeMD
force-pushed
the
1.21
branch
3 times, most recently
from
January 16, 2026 09:11
ce8929a to
cb40449
Compare
CreativeMD
force-pushed
the
1.21
branch
4 times, most recently
from
January 30, 2026 12:16
fbff2de to
6540b2e
Compare
CreativeMD
force-pushed
the
1.21
branch
4 times, most recently
from
February 7, 2026 16:30
6cf74bc to
10162c7
Compare
CreativeMD
force-pushed
the
1.21
branch
3 times, most recently
from
February 13, 2026 15:07
2161472 to
7e00b96
Compare
CreativeMD
force-pushed
the
1.21
branch
4 times, most recently
from
February 25, 2026 07:41
874e1c4 to
f45f5e7
Compare
CreativeMD
force-pushed
the
1.21
branch
3 times, most recently
from
February 27, 2026 16:28
b1267ed to
296edfd
Compare
CreativeMD
force-pushed
the
1.21
branch
2 times, most recently
from
March 27, 2026 14:41
788d5d6 to
1753a5a
Compare
CreativeMD
force-pushed
the
1.21
branch
3 times, most recently
from
April 28, 2026 11:39
4740d4e to
65e6130
Compare
CreativeMD
force-pushed
the
1.21
branch
4 times, most recently
from
May 8, 2026 12:53
e3dc3bf to
8bceb36
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The main change in this PR involves fixing a syntax error related to the closure definitions in the
build.gradlefile. Specifically, the original code was using the incorrect closure syntaxwithDependencies(dependencies -> dependencies.each { ... }), which caused compilation errors. I have updated the syntax to the correct Groovy formatwithDependencies { dependencies -> dependencies.each { ... } }.