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 backendURL=https://config.hostsharing.net:443/hsar/backend
;xmlrpcURL=https://config.hostsharing.net:443/hsar/xmlrpc/hsadmin xmlrpcURL=https://config.hostsharing.net:443/hsar/xmlrpc/hsadmin
;loginURL=https://login.hostsharing.net:443/cas/v1/tickets loginURL=https://login.hostsharing.net:443/cas/v1/tickets
xmlrpcURL=http://localhost:8080/cust-webapp/xmlrpc/hsadmin ;xmlrpcURL=http://localhost:8080/cust-webapp/xmlrpc/hsadmin
loginURL=TestUmgebung ;loginURL=TestUmgebung

View File

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