Skip to content

Commit

Permalink
Relocated SingleServiceProvider to (new) webfx-platform-service module
Browse files Browse the repository at this point in the history
  • Loading branch information
salmonb committed Mar 31, 2024
1 parent f88ebe9 commit 2c9056d
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 6 deletions.
6 changes: 6 additions & 0 deletions webfx-kit/webfx-kit-javafxgraphics-emul/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@
<version>0.1.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-service</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-shutdown</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion webfx-kit/webfx-kit-javafxmedia-emul/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-util</artifactId>
<artifactId>webfx-platform-service</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>

Expand Down
6 changes: 6 additions & 0 deletions webfx-kit/webfx-kit-launcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@
<version>0.1.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-service</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-uischeduler</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
requires javafx.graphics;
requires webfx.platform.boot;
requires webfx.platform.console;
requires webfx.platform.service;
requires webfx.platform.uischeduler;
requires webfx.platform.util;

Expand Down
2 changes: 1 addition & 1 deletion webfx-kit/webfx-kit-statusbar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-util</artifactId>
<artifactId>webfx-platform-service</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>

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

// Direct dependencies modules
requires javafx.graphics;
requires webfx.platform.util;
requires webfx.platform.service;

// Exported packages
exports dev.webfx.kit.statusbar;
Expand Down
4 changes: 2 additions & 2 deletions webfx-kit/webfx-kit-webgl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-typedarray</artifactId>
<artifactId>webfx-platform-service</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-util</artifactId>
<artifactId>webfx-platform-typedarray</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion webfx-kit/webfx-kit-webgl/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// Direct dependencies modules
requires javafx.graphics;
requires javafx.media;
requires webfx.platform.service;
requires webfx.platform.typedarray;
requires webfx.platform.util;

// Exported packages
exports dev.webfx.kit.webgl;
Expand Down

0 comments on commit 2c9056d

Please sign in to comment.