Skip to content

Commit

Permalink
Apply rename to server-test-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith committed May 14, 2024
1 parent c616b13 commit 5d8865a
Show file tree
Hide file tree
Showing 19 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion java-client/flight-dagger/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
Classpaths.inheritAssertJ(project)

testImplementation project(':server')
testImplementation project(':server-test')
testImplementation project(':server-test-utils')
testImplementation project(':log-to-slf4j')
}

Expand Down
2 changes: 1 addition & 1 deletion java-client/session-dagger/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
Classpaths.inheritAssertJ(project)

testImplementation project(':server')
testImplementation project(':server-test')
testImplementation project(':server-test-utils')
testImplementation project(':engine-test-utils')
testImplementation project(':Plot')
testImplementation project(':java-client-flight')
Expand Down
2 changes: 1 addition & 1 deletion server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ dependencies {

implementation 'dev.dirs:directories:26'

testImplementation project(':server-test')
testImplementation project(':server-test-utils')

runtimeOnly project(':Numerics'), project(':extensions-kafka')
Classpaths.inheritAssertJ(project)
Expand Down
2 changes: 1 addition & 1 deletion server/jetty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {

implementation project(':grpc-java:grpc-mtls')

testImplementation project(':server-test')
testImplementation project(':server-test-utils')
Classpaths.inheritJUnitClassic(project, 'testImplementation')
Classpaths.inheritAssertJ(project)

Expand Down
2 changes: 1 addition & 1 deletion server/netty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {

implementation project(':grpc-java:grpc-mtls')

testImplementation project(':server-test')
testImplementation project(':server-test-utils')
Classpaths.inheritJUnitClassic(project, 'testImplementation')
Classpaths.inheritAssertJ(project)

Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ project(':ssl-config').projectDir = file('ssl/config')
include(':ssl-kickstart')
project(':ssl-kickstart').projectDir = file('ssl/kickstart')

include(':server-test')
project(':server-test').projectDir = file('server/test')
include(':server-test-utils')
project(':server-test-utils').projectDir = file('server/test-utils')

include(':server-netty')
project(':server-netty').projectDir = file('server/netty')
Expand Down

0 comments on commit 5d8865a

Please sign in to comment.