Skip to content

Commit

Permalink
fix pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
the-lazy-learner committed Jul 30, 2019
1 parent 641ef56 commit be7a0bd
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<groupId>sample.musicplayer</groupId>
<artifactId>MusicPlayerFX</artifactId>
<version>1.0-SNAPSHOT</version>
Expand All @@ -12,22 +14,22 @@
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>LATEST</version>
<version>13-ea+11</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>LATEST</version>
<version>13-ea+11</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-media</artifactId>
<version>LATEST</version>
<version>13-ea+11</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>LATEST</version>
<version>13-ea+11</version>
</dependency>
</dependencies>

Expand All @@ -44,6 +46,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>9</source>
<target>9</target>
Expand Down

0 comments on commit be7a0bd

Please sign in to comment.