Skip to content

Commit

Permalink
fixed for java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
dallyger committed May 24, 2019
1 parent 14db10d commit 7b4ef32
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nbactions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<goal>org.codehaus.mojo:exec-maven-plugin:1.5.0:exec</goal>
</goals>
<properties>
<exec.args>-classpath %classpath de.darlor.dacardconv.DaCardConv</exec.args>
<exec.args>-classpath %classpath de.darlor.dacardconv.Main</exec.args>
<exec.executable>java</exec.executable>
</properties>
</action>
Expand All @@ -24,7 +24,7 @@
<goal>org.codehaus.mojo:exec-maven-plugin:1.5.0:exec</goal>
</goals>
<properties>
<exec.args>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath de.darlor.dacardconv.DaCardConv</exec.args>
<exec.args>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath de.darlor.dacardconv.Main</exec.args>
<exec.executable>java</exec.executable>
<jpda.listen>true</jpda.listen>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>de.darlor.dacardconv.DaCardConv</mainClass>
<mainClass>de.darlor.dacardconv.Main</mainClass>
</manifest>
</archive>
</configuration>
Expand Down
13 changes: 13 additions & 0 deletions src/main/java/de/darlor/dacardconv/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package de.darlor.dacardconv;

/**
*
* @author Vincent 'challenger1304' Neubauer ([email protected])
*/
public class Main {

public static void main(String[] args) {
DaCardConv.main(args);
}

}

0 comments on commit 7b4ef32

Please sign in to comment.