Skip to content

Commit

Permalink
Updated MDFX to satisfy the enforcer.
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianKirmaier committed Sep 27, 2023
1 parent a43853c commit f90b756
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions components/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@
<artifactId>model</artifactId>
</dependency>
<dependency>
<groupId>com.sandec</groupId>
<artifactId>mdfx</artifactId>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-mdfx</artifactId>
</dependency>
<dependency>
<groupId>fr.brouillard.oss</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import java.util.Objects;
import java.util.function.Consumer;

public class CustomMarkdownView extends com.sandec.mdfx.MarkdownView {
public class CustomMarkdownView extends one.jpro.platform.mdfx.MarkdownView {

public CustomMarkdownView() {
getStyleClass().add("custom-markdown-view");
Expand Down
2 changes: 1 addition & 1 deletion components/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
requires org.controlsfx.controls;
requires net.synedra.validatorfx;
requires com.dlsc.gemsfx;
requires com.sandec.mdfx;
requires one.jpro.platform.mdfx;
requires org.apache.commons.lang3;
requires org.apache.logging.log4j;
requires org.apache.commons.io;
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@
</dependency>

<dependency>
<groupId>com.sandec</groupId>
<artifactId>mdfx</artifactId>
<version>0.2.12</version>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-mdfx</artifactId>
<version>${jpro.platform.version}</version>
<exclusions>
<exclusion>
<groupId>org.openjfx</groupId>
Expand Down
4 changes: 2 additions & 2 deletions sampler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@
</dependency>

<dependency>
<groupId>com.sandec</groupId>
<artifactId>mdfx</artifactId>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-mdfx</artifactId>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion sampler/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
requires org.apache.commons.lang3;

requires com.dlsc.jfxcentral2.components;
requires com.sandec.mdfx;
requires one.jpro.platform.mdfx;
requires com.dlsc.jfxcentral2.iconfont;
requires com.dlsc.jfxcentral2.devtools;

Expand Down

0 comments on commit f90b756

Please sign in to comment.