kopia lustrzana https://github.com/jameshball/osci-render
Update to Java 19
rodzic
38976645d8
commit
a39d29eef1
|
@ -11,10 +11,10 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up JDK 17
|
||||
- name: Set up JDK 19
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
java-version: '17'
|
||||
java-version: '19'
|
||||
distribution: 'adopt'
|
||||
- name: Build with Maven
|
||||
run: |
|
||||
|
@ -44,10 +44,10 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up JDK 17
|
||||
- name: Set up JDK 19
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
java-version: '17'
|
||||
java-version: '19'
|
||||
distribution: 'adopt'
|
||||
- name: Build with Maven
|
||||
run: |
|
||||
|
@ -74,10 +74,10 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up JDK 17
|
||||
- name: Set up JDK 19
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
java-version: '17'
|
||||
java-version: '19'
|
||||
distribution: 'adopt'
|
||||
- name: Build with Maven
|
||||
run: |
|
||||
|
|
|
@ -168,7 +168,7 @@ To uninstall, use Windows control panel, as you would expect.
|
|||
- Download the latest `osci-render-os-VERSION.jar` from [Releases](https://github.com/jameshball/osci-render/releases)
|
||||
- Download the version that is relevant to your OS, otherwise the program will not open
|
||||
- i.e. `osci-render-win-VERSION.jar` for Windows and `osci-render-unix-VERSION.jar` for Linux
|
||||
- Download and install [Java 17 or later](https://www.oracle.com/java/technologies/downloads/)
|
||||
- Download and install [Java 19 or later](https://www.oracle.com/java/technologies/downloads/)
|
||||
- Run the following command from your terminal to run the `.jar`, substituting the correct path to your `.jar` file
|
||||
- `java "-Dfile.encoding=UTF8" -jar "PATH/TO/osci-render-os-VERSION.jar"`
|
||||
- Start rendering!
|
||||
|
@ -177,7 +177,7 @@ To uninstall, use Windows control panel, as you would expect.
|
|||
|
||||
I am using Maven for dependency management and to package the program. Doing the following will setup the project. I highly recommend using IntelliJ.
|
||||
|
||||
- Download and install [Java 17 or later](https://www.oracle.com/java/technologies/downloads/)
|
||||
- Download and install [Java 19 or later](https://www.oracle.com/java/technologies/downloads/)
|
||||
- Run `git clone git@github.com:jameshball/osci-render.git`
|
||||
- Open the project in IntelliJ
|
||||
- I use [SceneBuilder](https://gluonhq.com/products/scene-builder/) to edit the GUI
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -12,8 +12,8 @@
|
|||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.release>17</maven.compiler.release>
|
||||
<javafx.version>17.0.1</javafx.version>
|
||||
<maven.compiler.release>19</maven.compiler.release>
|
||||
<javafx.version>19</javafx.version>
|
||||
<appMainClass>sh.ball.gui.Launcher</appMainClass>
|
||||
</properties>
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue