Skip to content

Commit

Permalink
Fixes #4152 - Update Piranha Server - Create a Hello World web applic…
Browse files Browse the repository at this point in the history
…ation (#4178)
  • Loading branch information
mnriem authored Nov 7, 2024
1 parent 58c1489 commit a16fd2f
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions test/server/helloworld/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,56 +5,34 @@
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/server/create_a_hello_world_web_application.md.
When updating the guide drop the parent part below and change the name to
read 'Create a Hello World application'.
-->
<parent>
<groupId>cloud.piranha.test.server</groupId>
<artifactId>project</artifactId>
<version>24.11.0-SNAPSHOT</version>
</parent>
<groupId>cloud.piranha.test.server</groupId>
<artifactId>helloworld</artifactId>
<version>24.11.0-SNAPSHOT</version>
<artifactId>piranha-test-server-helloworld</artifactId>
<packaging>war</packaging>
<name>Piranha - Test - Server - Hello World application</name>
<properties>
<!-- dependencies -->
<junit.version>5.11.2</junit.version>
<!-- other -->
<java.version>21</java.version>
<piranha.distribution>server</piranha.distribution>
<piranha.version>${project.version}</piranha.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- plugins -->
<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>
</properties>
<dependencies>
<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>
Expand Down

0 comments on commit a16fd2f

Please sign in to comment.