Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
vadere
vadere
Commits
282fab9d
Commit
282fab9d
authored
Nov 22, 2018
by
Stefan Schuhbaeck
Browse files
add launch4j to pom to create windows executables.
parent
9def8bab
Pipeline
#76521
failed with stages
in 105 minutes and 43 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
VadereGui/pom.xml
View file @
282fab9d
...
...
@@ -36,6 +36,8 @@
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
exec-maven-plugin
</artifactId>
...
...
@@ -113,6 +115,42 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>
com.akathist.maven.plugins.launch4j
</groupId>
<artifactId>
launch4j-maven-plugin
</artifactId>
<executions>
<execution>
<id>
vadere-gui
</id>
<phase>
package
</phase>
<goals><goal>
launch4j
</goal></goals>
<configuration>
<headerType>
gui
</headerType>
<outfile>
target/vadere.exe
</outfile>
<jar>
target/vadere.jar
</jar>
<errTitle>
vadere
</errTitle>
<icon>
../vadere-gui.ico
</icon>
<classPath>
<mainClass>
org.vadere.gui.projectview.VadereApplication
</mainClass>
</classPath>
<jre>
<minVersion>
1.8.0
</minVersion>
</jre>
<versionInfo>
<fileVersion>
0.0.0.6
</fileVersion>
<txtFileVersion>
0.0.0.6
</txtFileVersion>
<fileDescription>
Vadere is an open source framework for the simulation of microscopic pedestrian dynamics.
</fileDescription>
<copyright>
GNU Lesser General Public License (LGPL)
</copyright>
<productVersion>
0.0.0.6
</productVersion>
<txtProductVersion>
0.0.0.6
</txtProductVersion>
<productName>
Vadere
</productName>
<internalName>
vadere
</internalName>
<originalFilename>
vadere.exe
</originalFilename>
</versionInfo>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.jacoco
</groupId>
...
...
VadereSimulator/pom.xml
View file @
282fab9d
...
...
@@ -140,6 +140,41 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>
com.akathist.maven.plugins.launch4j
</groupId>
<artifactId>
launch4j-maven-plugin
</artifactId>
<executions>
<execution>
<id>
vadere-console
</id>
<phase>
package
</phase>
<goals><goal>
launch4j
</goal></goals>
<configuration>
<headerType>
console
</headerType>
<outfile>
target/vadere-console.exe
</outfile>
<jar>
target/vadere-console.jar
</jar>
<errTitle>
vadere
</errTitle>
<icon>
../vadere-cmd.ico
</icon>
<classPath>
<mainClass>
org.vadere.gui.projectview.VadereApplication
</mainClass>
</classPath>
<jre>
<minVersion>
1.8.0
</minVersion>
</jre>
<versionInfo>
<fileVersion>
0.0.0.6
</fileVersion>
<txtFileVersion>
0.0.0.6
</txtFileVersion>
<fileDescription>
Vadere is an open source framework for the simulation of microscopic pedestrian dynamics.
</fileDescription>
<copyright>
GNU Lesser General Public License (LGPL)
</copyright>
<productVersion>
0.0.0.6
</productVersion>
<txtProductVersion>
0.0.0.6
</txtProductVersion>
<productName>
Vadere-console
</productName>
<internalName>
vadere-console
</internalName>
<originalFilename>
vadere-console.exe
</originalFilename>
</versionInfo>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
...
...
vadere-cmd.ico
0 → 100644
View file @
282fab9d
15.9 KB
vadere-gui.ico
0 → 100644
View file @
282fab9d
14.4 KB
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment