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
|
||||
|
||||
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
|
||||
|
||||
|
|
5
pom.xml
5
pom.xml
|
@ -45,8 +45,8 @@
|
|||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.1</version>
|
||||
<configuration>
|
||||
<source>11</source>
|
||||
<target>11</target>
|
||||
<source>1.8</source>
|
||||
<target>1.8</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
|
@ -56,7 +56,6 @@
|
|||
<configuration>
|
||||
<archive>
|
||||
<manifest>
|
||||
<addClasspath>true</addClasspath>
|
||||
<mainClass>mplayer4anime.Main</mainClass>
|
||||
</manifest>
|
||||
</archive>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
Manifest-Version: 1.0
|
||||
Main-Class: mplayer4anime.MainFX
|
||||
Main-Class: mplayer4anime.Main
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package mplayer4anime;
|
||||
|
||||
// NOTE: Club of disabled congratulates new member!
|
||||
// TODO: rewrite using module-info.java
|
||||
|
||||
public class Main {
|
||||
public static void main(String[] args){
|
||||
|
|
Loading…
Reference in a new issue