Skip to content

Commit

Permalink
Merge pull request #1 from PrimosK/jkd-11-compatibility
Browse files Browse the repository at this point in the history
Java 11 compatibility
  • Loading branch information
dlemmermann authored Apr 2, 2020
2 parents a1001a5 + 4607976 commit 6515d6d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# UnitFX

UnitFX is a lightweight framework for creating textfield input controls based on a "unit of measure" UOM.
Currently the only documentation is the source code itself. Please take a look at the file DemoApp.java to find
Currently the only documentation is the source code itself. Please take a look at the file `DemoApp.java` to find
out how to use the framework.

QuantityInputField will perform validation and conversion between different units out-of-the-box. A "base" unit can be
`QuantityInputField` will perform validation and conversion between different units out-of-the-box. A "base" unit can be
set on a textfield and the field will be highlighted when the user changes the textfield's unit to something
different than the base unit.

*At least **JDK 11** is required.*

![screenshot of demo_app](docs/images/demo.png)
4 changes: 2 additions & 2 deletions unitfx-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>12</source>
<target>12</target>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
Expand Down
4 changes: 2 additions & 2 deletions unitfx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>12</source>
<target>12</target>
<source>11</source>
<target>11</target>
</configuration>
</plugin>

Expand Down

0 comments on commit 6515d6d

Please sign in to comment.