Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
danygold committed Dec 12, 2023
2 parents 94126e0 + febaad7 commit 9bf291d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@

plugins {
id("java-library")
id("org.openjfx.javafxplugin") version "0.0.13"
id("org.openjfx.javafxplugin") version "0.0.14"
id("maven-publish")
id("io.github.gradle-nexus.publish-plugin") version "1.2.0"
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
signing
jacoco
}
Expand All @@ -44,11 +44,11 @@ repositories {
}

dependencies {
api("com.squareup.moshi:moshi:1.14.0")
compileOnlyApi("org.jetbrains:annotations:24.0.0")
api("com.squareup.moshi:moshi:1.15.0")
compileOnlyApi("org.jetbrains:annotations:24.0.1")

testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.2")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")
}

tasks.withType<JavaCompile> {
Expand Down
12 changes: 6 additions & 6 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module io.github.danygold.fx.moshi {
requires moshi;
requires com.squareup.moshi;
requires transitive javafx.base;
requires static org.jetbrains.annotations;

Expand All @@ -9,9 +9,9 @@
exports io.github.danygold.fxmoshi.adapters.observable;
exports io.github.danygold.fxmoshi.factories;

opens io.github.danygold.fxmoshi to moshi;
opens io.github.danygold.fxmoshi.adapters.properties to moshi;
opens io.github.danygold.fxmoshi.adapters.properties.primitives to moshi;
opens io.github.danygold.fxmoshi.adapters.observable to moshi;
opens io.github.danygold.fxmoshi.factories to moshi;
opens io.github.danygold.fxmoshi to com.squareup.moshi;
opens io.github.danygold.fxmoshi.adapters.properties to com.squareup.moshi;
opens io.github.danygold.fxmoshi.adapters.properties.primitives to com.squareup.moshi;
opens io.github.danygold.fxmoshi.adapters.observable to com.squareup.moshi;
opens io.github.danygold.fxmoshi.factories to com.squareup.moshi;
}

0 comments on commit 9bf291d

Please sign in to comment.