Skip to content

Commit

Permalink
feat(publish): Fixed maven publishing to maven central
Browse files Browse the repository at this point in the history
Signed-off-by: Frederik Bertling <[email protected]>
  • Loading branch information
Burtan committed May 14, 2024
1 parent e911b80 commit 7e9b359
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class OSCUDPSocketTest : StringSpec() {

init {
"OSCUDPSocket test #1" {
val port = Random.nextInt(8080..30000)
val port = Random.nextInt(8080..8090)
val listener = OSCUDPSocket(port)
val client = OSCUDPSocket("localhost", port)
testClient(client, listener)
Expand All @@ -29,7 +29,7 @@ class OSCUDPSocketTest : StringSpec() {
}

"OSCUDPSocket test #2" {
val port = Random.nextInt(8080..30000)
val port = Random.nextInt(8080..8090)
val listener = OSCUDPSocket(port)
val client = OSCUDPSocket(InetSocketAddress("localhost", port))
testClient(client, listener)
Expand All @@ -38,14 +38,14 @@ class OSCUDPSocketTest : StringSpec() {
}

"OSCUDPSocket test #3" {
val port = Random.nextInt(8080..30000)
val port = Random.nextInt(8080..8090)
val listenerClient = OSCUDPSocket("localhost", port, port)
testClient(listenerClient, listenerClient)
listenerClient.close()
}

"OSCUDPSocket test #4" {
val port = Random.nextInt(8080..30000)
val port = Random.nextInt(8080..8090)
val listenerClient = OSCUDPSocket(
localAddress = InetSocketAddress("localhost", port),
remoteAddress = InetSocketAddress("localhost", port)
Expand Down

0 comments on commit 7e9b359

Please sign in to comment.