Skip to content

Commit

Permalink
Fix package names
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesLichtenberger committed Jul 26, 2023
1 parent 2697c0d commit a5fe7d4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions bundles/sirix-query/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'kotlin'
apply plugin: 'application'

ext {
javaMainClass = "org.sirix.query.Main"
javaMainClass = "io.sirix.query.Main"
}

application {
Expand All @@ -40,7 +40,7 @@ description = 'Sirix/Brackit binding.'

jar {
manifest {
attributes('Main-Class': 'org.sirix.query.Main')
attributes('Main-Class': 'io.sirix.query.Main')
}
}

Expand Down
2 changes: 0 additions & 2 deletions bundles/sirix-rest-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,10 @@ jar {
}

compileKotlin {
// TODO: Upgrade to Java 17 when Kotlin compatibility is available
kotlinOptions.jvmTarget = '19'
}

compileTestKotlin {
// TODO: Upgrade to Java 17 when Kotlin compatibility is available
kotlinOptions.jvmTarget = '19'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class SirixVerticleJsonTest {
.put("client.secret", "78a294c4-0492-4e44-a35f-7eb9cab0d831") // "64aaf9b2-9ea1-43cd-bcb6-87d2f430aaa2"
.put("keycloak.url", "http://localhost:8080/auth/realms/sirixdb")
)
vertx.deployVerticle("org.sirix.rest.SirixVerticle", options, testContext.succeedingThenComplete())
vertx.deployVerticle("io.sirix.rest.SirixVerticle", options, testContext.succeedingThenComplete())

client = WebClient.create(vertx, WebClientOptions().setTrustAll(true).setFollowRedirects(false))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class SirixVerticleXmlTest {
.put("client.secret", "78a294c4-0492-4e44-a35f-7eb9cab0d831")
.put("keycloak.url", "http://localhost:8080/auth/realms/sirixdb")
)
vertx.deployVerticle("org.sirix.rest.SirixVerticle", options, testContext.succeedingThenComplete())
vertx.deployVerticle("io.sirix.rest.SirixVerticle", options, testContext.succeedingThenComplete())

client = WebClient.create(vertx, WebClientOptions().setTrustAll(true).setFollowRedirects(false))
}
Expand Down

0 comments on commit a5fe7d4

Please sign in to comment.