This page (revision-15) was last changed on 23-Apr-2022 17:06 by Harry Metske

This page was created on 23-Apr-2022 17:05 by Harry Metske

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
15 23-Apr-2022 17:06 8 KB Harry Metske to previous
14 23-Apr-2022 17:05 8 KB Harry Metske to previous | to last
13 23-Apr-2022 17:05 8 KB Harry Metske to previous | to last
12 23-Apr-2022 17:05 8 KB Harry Metske to previous | to last
11 23-Apr-2022 17:05 7 KB Harry Metske to previous | to last
10 23-Apr-2022 17:05 7 KB Harry Metske to previous | to last
9 23-Apr-2022 17:05 7 KB Harry Metske to previous | to last
8 23-Apr-2022 17:05 7 KB Harry Metske to previous | to last
7 23-Apr-2022 17:05 7 KB Harry Metske to previous | to last
6 23-Apr-2022 17:05 7 KB Harry Metske to previous | to last
5 23-Apr-2022 17:05 6 KB Harry Metske to previous | to last
4 23-Apr-2022 17:05 6 KB Harry Metske to previous | to last
3 23-Apr-2022 17:05 3 KB Harry Metske to previous | to last
2 23-Apr-2022 17:05 3 KB Harry Metske to previous | to last
1 23-Apr-2022 17:05 2 KB Harry Metske to last

Page References

Incoming links Outgoing links
Maven...nobody

Version management

Difference between version and

At line 1 changed one line
!!! maven
!!! Maven
At line 3 added 4 lines
[{TableOfContents}]
At line 82 added 20 lines
! war plugin
If you want a war file to be generated by maven, you need the (default supplied) war plugin.\\
I had to add the webXml attribute to specify the location of the web.xml file, this can be done in the pom.xml, see the following snippet:\\
%%prettify
{{{
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.0</version>
<extensions>false</extensions>
<inherited>true</inherited>
<configuration>
<webXml>WebContent/WEB-INF/web.xml</webXml>
</configuration>
</plugin>
}}}
%%