Skip to content
Snippets Groups Projects
Commit 0cde33de authored by keyno10's avatar keyno10
Browse files

Fixed POM xml to make work

parent 87130a6a
No related branches found
No related tags found
No related merge requests found
<component name="libraryTable">
<library name="Maven: org.openjfx:javafx-base:linux:15.0.1">
<library name="Maven: org.openjfx:javafx-base:win:15.0.1">
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/15.0.1/javafx-base-15.0.1-linux.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/15.0.1/javafx-base-15.0.1-win.jar!/" />
</CLASSES>
<JAVADOC>
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/15.0.1/javafx-base-15.0.1-javadoc.jar!/" />
......
<component name="libraryTable">
<library name="Maven: org.openjfx:javafx-controls:linux:15.0.1">
<library name="Maven: org.openjfx:javafx-controls:win:15.0.1">
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-controls/15.0.1/javafx-controls-15.0.1-linux.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-controls/15.0.1/javafx-controls-15.0.1-win.jar!/" />
</CLASSES>
<JAVADOC>
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-controls/15.0.1/javafx-controls-15.0.1-javadoc.jar!/" />
......
<component name="libraryTable">
<library name="Maven: org.openjfx:javafx-graphics:linux:15.0.1">
<library name="Maven: org.openjfx:javafx-graphics:win:15.0.1">
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-graphics/15.0.1/javafx-graphics-15.0.1-linux.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-graphics/15.0.1/javafx-graphics-15.0.1-win.jar!/" />
</CLASSES>
<JAVADOC>
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-graphics/15.0.1/javafx-graphics-15.0.1-javadoc.jar!/" />
......
......@@ -11,10 +11,10 @@
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:15.0.1" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:linux:15.0.1" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:win:15.0.1" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:15.0.1" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:15.0.1" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:win:15.0.1" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:15.0.1" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:linux:15.0.1" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:win:15.0.1" level="project" />
</component>
</module>
\ No newline at end of file
......@@ -21,7 +21,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.8.0</version>
<configuration>
<release>11</release>
</configuration>
......
......@@ -102,6 +102,7 @@ public class AbilitiesList extends ScrollPane {
TextField textField = new TextField();
container.getChildren().add(textField);
/**
//Set on press enter
textField.setOnKeyPressed(keyEvent -> {
if(keyEvent.getCode().equals(KeyCode.ENTER)) {
......@@ -109,6 +110,7 @@ public class AbilitiesList extends ScrollPane {
showAbility(pane, ability);
}
});
*/
}
}
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment