Compare commits

...

1 Commits

Author SHA1 Message Date
Niclas Thobaben 72b5277b24 BLD setup webapp project
NClazz/resource-manager/pipeline/head This commit looks good Details
2020-12-05 12:57:04 +01:00
4 changed files with 62 additions and 0 deletions

View File

@ -7,6 +7,7 @@
<modules>
<module>resource-manager-api</module>
<module>resource-manager-webapp</module>
</modules>
<parent>

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>resource-manager</artifactId>
<groupId>de.nclazz</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>resource-manager-webapp</artifactId>
<packaging>war</packaging>
<name>resource-manager-webapp Maven Webapp</name>
<properties>
<jetty.http.port>8080</jetty.http.port>
</properties>
<dependencies>
<dependency>
<groupId>de.nclazz</groupId>
<artifactId>resource-manager-api</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<finalName>resource-manager-webapp</finalName>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.4.12.RC2</version>
<configuration>
<reload>manual</reload>
<scanIntervalSeconds>1</scanIntervalSeconds>
<webAppConfig>
<descriptor>target/jettyFilteredResources/web.xml</descriptor>
<contextPath>/</contextPath>
</webAppConfig>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>

View File

@ -0,0 +1,7 @@
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<display-name>Archetype Created Web Application</display-name>
</web-app>

View File

@ -0,0 +1,5 @@
<html>
<body>
<h2>Hello World!</h2>
</body>
</html>