-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(gradle): update dependencies only if both group and artifact ids …
…are the same (#7145) Closes #7002 Co-authored-by: =?UTF-8?q?David=20Rodr=C3=ADguez?= <deivid.rodriguez@riseup.net>
- Loading branch information
1 parent
f103d05
commit 6252098
Showing
3 changed files
with
92 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
18 changes: 18 additions & 0 deletions
18
gradle/spec/fixtures/buildfiles/build_same_groupId_different_artifactId.gradle
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# See https://github.com/dependabot/dependabot-core/issues/7002 | ||
|
||
dependencies { | ||
implementation 'com.graphql-java:graphql-java-extended-scalars:20.0' | ||
implementation 'com.graphql-java:graphql-java:20.0' | ||
implementation group: 'com.graphql-java', name: 'graphql-java-extended-scalars', version: '20.0' | ||
|
||
implementation group: 'com.graphql-java', name: 'graphql-java', version: '20.0' | ||
implementation group: 'com.graphql-java', version: '20.0', name: 'graphql-java' | ||
|
||
implementation version: '20.0', group: 'com.graphql-java', name: 'graphql-java' | ||
implementation version: '20.0', name: 'graphql-java', group: 'com.graphql-java' | ||
|
||
implementation name: 'graphql-java', version: '20.0', group: 'com.graphql-java' | ||
implementation name: 'graphql-java', group: 'com.graphql-java',version: '20.0' | ||
|
||
|
||
} |