Skip to content

Commit

Permalink
Updated version to 11.3.0. Started using OpenJFX 11.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemmermann committed Sep 17, 2018
1 parent 239f6fe commit 65803bd
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To use this framework as part of your Maven build simply add the jcentral reposi
<dependency>
<groupId>com.dlsc.formsfx</groupId>
<artifactId>formsfx-core</artifactId>
<version>10.3.0</version>
<version>11.3.0</version>
</dependency>
```

Expand Down
18 changes: 15 additions & 3 deletions formsfx-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.dlsc.formsfx</groupId>
<artifactId>formsfx-core</artifactId>
<packaging>jar</packaging>
<version>10.3.0</version>
<version>11.3.0</version>

<name>FormsFX Core</name>
<description>A framework for quickly creating form-based UIs.</description>
Expand Down Expand Up @@ -44,8 +44,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>10</source>
<target>10</target>
<source>11</source>
<target>11</target>
</configuration>
</plugin>

Expand Down Expand Up @@ -146,6 +146,18 @@
</build>

<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>11-ea+25</version>
</dependency>

<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>11-ea+25</version>
</dependency>

<!-- Test Dependencies -->

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions formsfx-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.dlsc.formsfx</groupId>
<artifactId>formsfx</artifactId>
<version>10.3.0</version>
<version>11.3.0</version>
</parent>

<name>FormsFX Demo</name>
Expand All @@ -19,7 +19,7 @@
<dependency>
<groupId>com.dlsc.formsfx</groupId>
<artifactId>formsfx-core</artifactId>
<version>10.3.0</version>
<version>11.3.0</version>
</dependency>
</dependencies>

Expand Down
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<groupId>com.dlsc.formsfx</groupId>
<artifactId>formsfx</artifactId>
<packaging>pom</packaging>
<version>10.3.0</version>
<version>11.3.0</version>

<modules>
<module>formsfx-core</module>
Expand All @@ -26,15 +26,16 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>10</source>
<target>10</target>
<source>11</source>
<target>11</target>
</configuration>
</plugin>

</plugins>
</build>

<dependencies>

<!-- Test Dependencies -->

<dependency>
Expand Down

0 comments on commit 65803bd

Please sign in to comment.