Skip to content

Commit

Permalink
Update JMemoryBuddy dependency to version 0.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
besidev committed Oct 30, 2024
1 parent c4be5bf commit ebff1a4
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ configure(subprojects.findAll { it.name != 'example' }) {
testImplementation "org.junit.jupiter:junit-jupiter:$JUNIT_VERSION"
testImplementation "org.junit.jupiter:junit-jupiter-engine:$JUNIT_VERSION"

testImplementation "de.sandec:JMemoryBuddy:$JMEMORYBUDDY_VERSION"
testImplementation "one.jpro:jmemorybuddy:$JMEMORYBUDDY_VERSION"
testImplementation "org.mockito:mockito-core:$MOCKITO_VERSION"
testImplementation "org.mockito:mockito-junit-jupiter:$MOCKITO_VERSION"
testImplementation "org.hamcrest:hamcrest:$HAMCREST_VERSION"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ JPRO_PLATFORM_VERSION = 0.4.3-SNAPSHOT
JPRO_VERSION = 2024.3.3
JAVAFX_VERSION = 17.0.12
SIMPLEFX_VERSION = 3.2.37
JMEMORYBUDDY_VERSION = 0.5.5
JMEMORYBUDDY_VERSION = 0.5.6
JNODES_VERSION = 0.8.3
SCENIC_VIEW_VERSION = 11.0.3-SNAPSHOT-FORK

Expand Down
2 changes: 1 addition & 1 deletion jpro-html-scrollpane/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies {
implementation project(":tree-showing")
implementation "com.sandec.jpro:jpro-webapi:$JPRO_VERSION"
implementation "de.sandec:JMemoryBuddy:$JMEMORYBUDDY_VERSION"
implementation "one.jpro:jmemorybuddy:$JMEMORYBUDDY_VERSION"
implementation "org.slf4j:slf4j-api:$SLF4J_API_VERSION"
}
2 changes: 1 addition & 1 deletion jpro-html-scrollpane/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module one.jpro.platform.htmlscrollpane {
requires javafx.controls;
requires jpro.webapi;
requires de.sandec.jmemorybuddy;
requires one.jpro.jmemorybuddy;
requires one.jpro.platform.treeshowing;
requires org.slf4j;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import com.jpro.webapi.HTMLView;
import com.jpro.webapi.WebAPI;
import de.sandec.jmemorybuddy.CleanupDetector;
import one.jpro.jmemorybuddy.CleanupDetector;
import javafx.application.Platform;
import javafx.beans.property.Property;
import javafx.beans.value.ChangeListener;
Expand Down
2 changes: 1 addition & 1 deletion jpro-routing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ configure([project(':jpro-routing:core'), project(':jpro-routing:dev'), project(
dependencies {
api "com.sandec.jpro:jpro-webapi:$JPRO_VERSION"
api "SANDEC:jnodes:$JNODES_VERSION"
api "de.sandec:JMemoryBuddy:$JMEMORYBUDDY_VERSION"
api "one.jpro:jmemorybuddy:$JMEMORYBUDDY_VERSION"
api "org.slf4j:slf4j-api:$SLF4J_API_VERSION"
}
}
Expand Down
2 changes: 1 addition & 1 deletion jpro-routing/core/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
requires transitive org.slf4j;

requires transitive de.sandec.jnodes;
requires transitive de.sandec.jmemorybuddy;
requires transitive one.jpro.jmemorybuddy;
requires transitive jpro.webapi;
requires transitive simplefx.core;
requires transitive simplefx.utility;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package one.jpro.platform.routing.crawl

import de.sandec.jmemorybuddy.JMemoryBuddy
import one.jpro.jmemorybuddy.JMemoryBuddy
import one.jpro.platform.routing.crawl.AppCrawler.CrawlReportApp
import one.jpro.platform.routing.{RouteNode, View}
import org.slf4j.{Logger, LoggerFactory}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package one.jpro.platform.routing.sessionmanager

import com.jpro.webapi.WebAPI
import de.sandec.jmemorybuddy.JMemoryBuddyLive
import one.jpro.jmemorybuddy.JMemoryBuddyLive
import javafx.beans.property.{ObjectProperty, SimpleObjectProperty}
import javafx.collections.{FXCollections, ObservableList}
import one.jpro.platform.routing.{HistoryEntry, Response, ResponseResult, RouteNode, View}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package one.jpro.platform.routing.dev

import com.jpro.webapi.WebAPI
import de.sandec.jmemorybuddy.JMemoryBuddyLive
import one.jpro.jmemorybuddy.JMemoryBuddyLive
import fr.brouillard.oss.cssfx.CSSFX
import one.jpro.platform.routing.filter.container.ContainerFilter
import one.jpro.platform.routing.{Filter, LinkUtil, RouteUtils}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package one.jpro.platform.routing.dev

import com.jpro.webapi.WebAPI
import de.sandec.jmemorybuddy.JMemoryBuddyLive
import one.jpro.jmemorybuddy.JMemoryBuddyLive
import fr.brouillard.oss.cssfx.CSSFX
import one.jpro.platform.routing.filter.container.ContainerFilter
import one.jpro.platform.routing.{Filter, LinkUtil, RouteUtils}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package example.scala

import com.jpro.webapi.{HTMLView, WebAPI}
import de.sandec.jmemorybuddy.JMemoryBuddyLive
import one.jpro.jmemorybuddy.JMemoryBuddyLive
import one.jpro.platform.routing.LinkUtil._
import one.jpro.platform.routing.Route._
import one.jpro.platform.routing.sessionmanager.SessionManager
Expand Down
2 changes: 1 addition & 1 deletion jpro-routing/popup/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dependencies {
api project(':jpro-routing:core')
api "com.sandec.jpro:jpro-webapi:$JPRO_VERSION"
api "SANDEC:jnodes:$JNODES_VERSION"
api "de.sandec:JMemoryBuddy:$JMEMORYBUDDY_VERSION"
api "one.jpro:jmemorybuddy:$JMEMORYBUDDY_VERSION"
api "org.kordamp.ikonli:ikonli-javafx:$IKONLI_VERSION"
api "org.kordamp.ikonli:ikonli-evaicons-pack:$IKONLI_VERSION"
}
2 changes: 1 addition & 1 deletion tree-showing/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dependencies {
implementation "de.sandec:JMemoryBuddy:$JMEMORYBUDDY_VERSION"
implementation "one.jpro:jmemorybuddy:$JMEMORYBUDDY_VERSION"
}
2 changes: 1 addition & 1 deletion tree-showing/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module one.jpro.platform.treeshowing {
requires javafx.controls;
requires de.sandec.jmemorybuddy;
requires one.jpro.jmemorybuddy;

exports one.jpro.platform.treeshowing;
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package one.jpro.platform.treeshowing;

import de.sandec.jmemorybuddy.JMemoryBuddy;
import one.jpro.jmemorybuddy.JMemoryBuddy;
import javafx.application.Platform;
import javafx.beans.property.BooleanProperty;
import javafx.scene.Group;
Expand Down

0 comments on commit ebff1a4

Please sign in to comment.