Skip to content

Commit

Permalink
Merge branch 'main' into bugfix/api/register-checks
Browse files Browse the repository at this point in the history
  • Loading branch information
FabiPunktExe authored Nov 6, 2024
2 parents 46a52ee + 5d6197d commit be42a74
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ repositories {
}

dependencies {
compileOnly("org.jetbrains:annotations:25.0.0")
compileOnly("org.jetbrains:annotations:26.0.1")
implementation("io.netty:netty-all:4.1.114.Final")
implementation("com.google.guava:guava:33.3.1-jre")
implementation("com.google.code.gson:gson:2.11.0")
implementation("org.yaml:snakeyaml:2.3")
runtimeOnly("org.bouncycastle:bcpkix-jdk18on:1.78.1")
runtimeOnly("org.bouncycastle:bcpkix-jdk18on:1.79")
}

spotless {
Expand Down Expand Up @@ -60,6 +60,7 @@ tasks {
jar {
from(configurations.runtimeClasspath.get().map { if (it.isDirectory) it else zipTree(it) })
duplicatesStrategy = DuplicatesStrategy.INCLUDE
exclude("META-INF/*.SF", "META-INF/*.DSA", "META-INF/*.RSA")
manifest.attributes["Implementation-Title"] = "Spikedog"
manifest.attributes["Implementation-Version"] = version
manifest.attributes["Main-Class"] = "diruptio.spikedog.Spikedog"
Expand Down
2 changes: 1 addition & 1 deletion example-module/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

dependencies {
compileOnly(project(":"))
compileOnly("org.jetbrains:annotations:25.0.0")
compileOnly("org.jetbrains:annotations:26.0.1")
}

tasks {
Expand Down
2 changes: 1 addition & 1 deletion info-module/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

dependencies {
compileOnly(project(":"))
compileOnly("org.jetbrains:annotations:25.0.0")
compileOnly("org.jetbrains:annotations:26.0.1")
}

tasks {
Expand Down
2 changes: 1 addition & 1 deletion reload-module/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

dependencies {
compileOnly(project(":"))
compileOnly("org.jetbrains:annotations:25.0.0")
compileOnly("org.jetbrains:annotations:26.0.1")
}

tasks {
Expand Down

0 comments on commit be42a74

Please sign in to comment.