made exe
This commit is contained in:
43
pom.xml
43
pom.xml
@@ -5,7 +5,7 @@
|
|||||||
<groupId>brainfuck.interpreter</groupId>
|
<groupId>brainfuck.interpreter</groupId>
|
||||||
<artifactId>BrainfuckInterpreter</artifactId>
|
<artifactId>BrainfuckInterpreter</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<version>1.0-SNAPSHOT</version>
|
<version>1.0a</version>
|
||||||
<name>BrainfuckInterpreter</name>
|
<name>BrainfuckInterpreter</name>
|
||||||
<url>http://maven.apache.org</url>
|
<url>http://maven.apache.org</url>
|
||||||
|
|
||||||
@@ -47,6 +47,7 @@
|
|||||||
<target>1.8</target>
|
<target>1.8</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>com.zenjava</groupId>
|
<groupId>com.zenjava</groupId>
|
||||||
<artifactId>javafx-maven-plugin</artifactId>
|
<artifactId>javafx-maven-plugin</artifactId>
|
||||||
@@ -55,6 +56,42 @@
|
|||||||
<mainClass>brainfuck.interpreter.Main</mainClass>
|
<mainClass>brainfuck.interpreter.Main</mainClass>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-eclipse-plugin</artifactId>
|
||||||
|
<version>2.9</version>
|
||||||
|
<configuration>
|
||||||
|
<downloadSources>true</downloadSources>
|
||||||
|
<downloadJavadocs>false</downloadJavadocs>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
|
<version>3.1.1</version>
|
||||||
|
<configuration>
|
||||||
|
<descriptorRefs>
|
||||||
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||||||
|
</descriptorRefs>
|
||||||
|
<archive>
|
||||||
|
<manifest>
|
||||||
|
<addClasspath>true</addClasspath>
|
||||||
|
<mainClass>brainfuck.interpreter.Main</mainClass>
|
||||||
|
</manifest>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>make-assembly</id>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>single</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|
||||||
<groupId>com.akathist.maven.plugins.launch4j</groupId>
|
<groupId>com.akathist.maven.plugins.launch4j</groupId>
|
||||||
@@ -69,7 +106,7 @@
|
|||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<headerType>gui</headerType>
|
<headerType>gui</headerType>
|
||||||
<jar>${project.build.directory}/${artifactId}-${version}-shaded.jar</jar>
|
<jar>${project.build.directory}/BrainfuckInterpreter-1.0a-jar-with-dependencies.jar</jar>
|
||||||
<outfile>${project.build.directory}/brainfuck-interpreter.exe</outfile>
|
<outfile>${project.build.directory}/brainfuck-interpreter.exe</outfile>
|
||||||
<downloadUrl>http://java.com/download</downloadUrl>
|
<downloadUrl>http://java.com/download</downloadUrl>
|
||||||
<classPath>
|
<classPath>
|
||||||
@@ -77,7 +114,7 @@
|
|||||||
<preCp>anything</preCp>
|
<preCp>anything</preCp>
|
||||||
</classPath>
|
</classPath>
|
||||||
<icon>src/main/resources/icon/icon.ico</icon>
|
<icon>src/main/resources/icon/icon.ico</icon>
|
||||||
<!-- <div>Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div>-->
|
<!-- <div>Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div>-->
|
||||||
<jre>
|
<jre>
|
||||||
<minVersion>1.8.0</minVersion>
|
<minVersion>1.8.0</minVersion>
|
||||||
<jdkPreference>preferJre</jdkPreference>
|
<jdkPreference>preferJre</jdkPreference>
|
||||||
|
|||||||
Reference in New Issue
Block a user