Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
vadere
vadere
Commits
40c35246
Commit
40c35246
authored
Apr 03, 2017
by
Benedikt Zoennchen
Browse files
package build now an executable vadere.jar and an executable postvis.jar
parent
9587ac67
Changes
1
Hide whitespace changes
Inline
Side-by-side
VadereGui/pom.xml
View file @
40c35246
...
...
@@ -51,35 +51,47 @@
-->
<artifactId>
maven-assembly-plugin
</artifactId>
<version>
2.4
</version>
<configuration>
<descriptorRefs>
<descriptorRef>
jar-with-dependencies
</descriptorRef>
</descriptorRefs>
<archive>
<!--
<manifest>
<mainClass>org.vadere.gui.postvisualization.PostVisualisation</mainClass>
</manifest>
<manifest>
<mainClass>org.vadere.gui.postvisualization.PostVisualizationConsole</mainClass>
</manifest>
-->
<manifest>
<mainClass>
org.vadere.gui.projectview.VadereApplication
</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>
make-assembly
</id>
<!-- this is used for inheritance merges -->
<phase>
package
</phase>
<!-- bind to the packaging phase -->
<goals>
<goal>
single
</goal>
</goals>
</execution>
</executions>
<executions>
<execution>
<id>
build-vadere
</id>
<!-- this is used for inheritance merges -->
<phase>
package
</phase>
<!-- bind to the packaging phase -->
<goals>
<goal>
single
</goal>
</goals>
<configuration>
<archive>
<manifest>
<mainClass>
org.vadere.gui.projectview.VadereApplication
</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>
jar-with-dependencies
</descriptorRef>
</descriptorRefs>
<finalName>
vadere
</finalName>
<appendAssemblyId>
false
</appendAssemblyId>
</configuration>
</execution>
<execution>
<id>
build-postVis
</id>
<!-- this is used for inheritance merges -->
<phase>
package
</phase>
<!-- bind to the packaging phase -->
<goals>
<goal>
single
</goal>
</goals>
<configuration>
<archive>
<manifest>
<mainClass>
org.vadere.gui.postvisualization.PostVisualisation
</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>
jar-with-dependencies
</descriptorRef>
</descriptorRefs>
<finalName>
postvis
</finalName>
<appendAssemblyId>
false
</appendAssemblyId>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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