Skip to content

Commit

Permalink
Fixes piranhacloud#4366 - Cleanup test/servlet/helloworld/pom.xml (pi…
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Dec 14, 2024
1 parent 13fa203 commit 9c1e6ce
Showing 1 changed file with 3 additions and 25 deletions.
28 changes: 3 additions & 25 deletions test/servlet/helloworld/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,34 +5,16 @@
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">
<modelVersion>4.0.0</modelVersion>
<!--
WARNING - Do not remove the versions in the properties section as this
particular project is used as a basis for the guide content at
docs/src/site/markdown/servlet/create_a_hello_world_web_application.md.
When updating the guide do the following:
1. Drop the parent part below
2. Change the name of the project to read 'Create a Hello World application'
3. Change the piranha.version to the latest released version of Piranha
-->
<parent>
<groupId>cloud.piranha.test.servlet</groupId>
<artifactId>project</artifactId>
<version>25.1.0-SNAPSHOT</version>
</parent>
<artifactId>helloworld</artifactId>
<version>25.1.0-SNAPSHOT</version>
<artifactId>piranha-test-servlet-helloworld</artifactId>
<packaging>war</packaging>
<name>Piranha - Test - Servlet - HelloWorld web application</name>
<properties>
<java.version>21</java.version>
<junit.version>5.11.2</junit.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven-failsafe-plugin.version>3.5.1</maven-failsafe-plugin.version>
<maven-war-plugin.version>3.4.0</maven-war-plugin.version>
<!-- other -->
<piranha.distribution>servlet</piranha.distribution>
<piranha.version>${project.version}</piranha.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -41,24 +23,21 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>helloworld</finalName>
<finalName>piranha-test-servlet-helloworld</finalName>
<plugins>
<!--
<plugin>
Expand Down Expand Up @@ -124,7 +103,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${build-helper-maven-plugin.version}</version>
<executions>
<execution>
<id>reserve-network-port</id>
Expand Down

0 comments on commit 9c1e6ce

Please sign in to comment.