Skip to content

Commit 5ab1097

Browse files
committed
Consistent dependency declaration order
1 parent d77ecb2 commit 5ab1097

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ configure(allprojects) { project ->
4040
dependencySet(group: 'org.apache.logging.log4j', version: '2.13.3') {
4141
entry 'log4j-api'
4242
entry 'log4j-core'
43-
entry 'log4j-slf4j-impl'
4443
entry 'log4j-jul'
44+
entry 'log4j-slf4j-impl'
4545
}
4646
dependency "org.slf4j:slf4j-api:1.7.30"
4747
dependency "com.google.code.findbugs:jsr305:3.0.2"

spring-core/spring-core.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,20 +54,20 @@ dependencies {
5454
optional("io.reactivex.rxjava2:rxjava")
5555
optional("io.netty:netty-buffer")
5656
testCompile("io.projectreactor:reactor-test")
57-
testCompile("javax.annotation:javax.annotation-api")
5857
testCompile("com.google.code.findbugs:jsr305")
59-
testCompile("org.xmlunit:xmlunit-assertj")
60-
testCompile("org.xmlunit:xmlunit-matchers")
58+
testCompile("javax.annotation:javax.annotation-api")
6159
testCompile("javax.xml.bind:jaxb-api")
6260
testCompile("com.fasterxml.woodstox:woodstox-core")
61+
testCompile("org.xmlunit:xmlunit-assertj")
62+
testCompile("org.xmlunit:xmlunit-matchers")
6363
testCompile(project(":kotlin-coroutines"))
6464
testCompile("io.projectreactor.tools:blockhound")
65-
testFixturesImplementation("com.google.code.findbugs:jsr305")
6665
testFixturesImplementation("io.projectreactor:reactor-test")
67-
testFixturesImplementation("org.assertj:assertj-core")
66+
testFixturesImplementation("com.google.code.findbugs:jsr305")
6867
testFixturesImplementation("org.junit.platform:junit-platform-launcher")
6968
testFixturesImplementation("org.junit.jupiter:junit-jupiter-api")
7069
testFixturesImplementation("org.junit.jupiter:junit-jupiter-params")
70+
testFixturesImplementation("org.assertj:assertj-core")
7171
testFixturesImplementation("org.xmlunit:xmlunit-assertj")
7272
}
7373

0 commit comments

Comments
 (0)