Skip to content

Commit 9e1b262

Browse files
committed
Change order of dependency declarations in GuavaClasspathTest
1 parent f303dc1 commit 9e1b262

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/groovy/org/gradlex/jvm/dependency/conflict/test/GuavaClasspathTest.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,9 @@ class GuavaClasspathTest extends Specification {
157157
}
158158
159159
dependencies {
160-
api("com.google.collections:google-collections:1.0")
161-
api("com.google.guava:listenablefuture:1.0")
162160
api("com.google.guava:guava:$guavaVersion${versionSuffix ? '-' : ''}$versionSuffix")
161+
api("com.google.guava:listenablefuture:1.0")
162+
api("com.google.collections:google-collections:1.0")
163163
}
164164
165165
tasks.register("printJars") {

0 commit comments

Comments
 (0)