updates, replace tomcat7-maven-plugin by jetty-maven-plugin

This commit is contained in:
Peter Hormanns 2023-12-19 13:30:03 +01:00
parent 39aee47937
commit a6420d2c5a
2 changed files with 19 additions and 14 deletions

View File

@ -1,5 +1,5 @@
backendURL=https://config.hostsharing.net:443/hsar/backend
;xmlrpcURL=https://config.hostsharing.net:443/hsar/xmlrpc/hsadmin
;loginURL=https://login.hostsharing.net:443/cas/v1/tickets
xmlrpcURL=http://localhost:8080/cust-webapp/xmlrpc/hsadmin
loginURL=TestUmgebung
xmlrpcURL=https://config.hostsharing.net:443/hsar/xmlrpc/hsadmin
loginURL=https://login.hostsharing.net:443/cas/v1/tickets
;xmlrpcURL=http://localhost:8080/cust-webapp/xmlrpc/hsadmin
;loginURL=TestUmgebung

View File

@ -5,7 +5,7 @@
<parent>
<groupId>de.hsadmin</groupId>
<artifactId>hsadmin-parent</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</parent>
<artifactId>admin-web</artifactId>
@ -42,19 +42,19 @@
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-server</artifactId>
<version>8.18.0</version>
<version>${vaadin.version}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-themes</artifactId>
<version>8.18.0</version>
<version>${vaadin.version}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-client-compiled</artifactId>
<version>8.18.0</version>
<version>${vaadin.version}</version>
</dependency>
<dependency>
@ -66,7 +66,7 @@
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<version>${log4j.version}</version>
</dependency>
<dependency>
@ -92,12 +92,17 @@
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>10.0.18</version>
<configuration>
<path>/</path>
<port>8081</port>
<scanIntervalSeconds>10</scanIntervalSeconds>
<httpConnector>
<port>8080</port>
</httpConnector>
<webApp>
<contextPath>/admin</contextPath>
</webApp>
</configuration>
</plugin>
</plugins>