Removed version from created war and added maven jetty plugin with context so URLs are prefixed correctly in uma-server-webapp
parent
0dd7eef428
commit
5993c879a6
|
@ -53,6 +53,7 @@
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
<configuration>
|
||||
<warName>uma-server-webapp</warName>
|
||||
<overlays>
|
||||
<overlay>
|
||||
<groupId>org.mitre</groupId>
|
||||
|
@ -61,6 +62,16 @@
|
|||
</overlays>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.jetty</groupId>
|
||||
<artifactId>jetty-maven-plugin</artifactId>
|
||||
<configuration>
|
||||
<war>${project.build.directory}/uma-server-webapp.war</war>
|
||||
<webAppConfig>
|
||||
<contextPath>/uma-server-webapp</contextPath>
|
||||
</webAppConfig>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
|
|
Loading…
Reference in New Issue