Skip to content
Snippets Groups Projects
Commit 0b061a83 authored by Robert Goldmann's avatar Robert Goldmann
Browse files

Fixed #379 - fix maven build

parent fa2e9c91
Branches
Tags
No related merge requests found
Pipeline #343 passed
...@@ -9,8 +9,6 @@ ...@@ -9,8 +9,6 @@
<version>2.0.1</version> <version>2.0.1</version>
<name>BudgetMaster</name> <name>BudgetMaster</name>
<packaging>war</packaging>
<repositories> <repositories>
<repository> <repository>
<id>release</id> <id>release</id>
...@@ -164,6 +162,25 @@ ...@@ -164,6 +162,25 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.2</version>
<configuration>
<webappDirectory>${basedir}/src/main</webappDirectory>
<outputDirectory>${project.outputDirectory}</outputDirectory>
<warName>${project.artifactName}</warName>
</configuration>
<executions>
<execution>
<id>war-packaging</id>
<goals>
<goal>war</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
<plugin> <plugin>
<groupId>com.akathist.maven.plugins.launch4j</groupId> <groupId>com.akathist.maven.plugins.launch4j</groupId>
<artifactId>launch4j-maven-plugin</artifactId> <artifactId>launch4j-maven-plugin</artifactId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment