small fixes
This commit is contained in:
parent
bcbcbaea5e
commit
bcd0437e3e
4 changed files with 5 additions and 5 deletions
|
@ -16,7 +16,7 @@ Pay attention, that this lib uses Apache-2.0 license
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
JRE 11 (v8 before v0.12 +JavaFX For example, in Debian Stretch you should install 'openjfx' package.) should be installed on your PC.
|
JRE (v8 before v0.12 +JavaFX, in Debian Stretch you should install 'openjfx' package.) should be installed on your PC. In new versions it should be JRE 8+.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
|
5
pom.xml
5
pom.xml
|
@ -45,8 +45,8 @@
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>3.1</version>
|
<version>3.1</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>11</source>
|
<source>1.8</source>
|
||||||
<target>11</target>
|
<target>1.8</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
@ -56,7 +56,6 @@
|
||||||
<configuration>
|
<configuration>
|
||||||
<archive>
|
<archive>
|
||||||
<manifest>
|
<manifest>
|
||||||
<addClasspath>true</addClasspath>
|
|
||||||
<mainClass>mplayer4anime.Main</mainClass>
|
<mainClass>mplayer4anime.Main</mainClass>
|
||||||
</manifest>
|
</manifest>
|
||||||
</archive>
|
</archive>
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
Manifest-Version: 1.0
|
Manifest-Version: 1.0
|
||||||
Main-Class: mplayer4anime.MainFX
|
Main-Class: mplayer4anime.Main
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package mplayer4anime;
|
package mplayer4anime;
|
||||||
|
|
||||||
// NOTE: Club of disabled congratulates new member!
|
// NOTE: Club of disabled congratulates new member!
|
||||||
|
// TODO: rewrite using module-info.java
|
||||||
|
|
||||||
public class Main {
|
public class Main {
|
||||||
public static void main(String[] args){
|
public static void main(String[] args){
|
||||||
|
|
Loading…
Reference in a new issue