72 lines
2.7 KiB
XML
72 lines
2.7 KiB
XML
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.stackify</groupId>
|
|
<artifactId>tomcat-app</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>tomcat-app</name>
|
|
<packaging>war</packaging>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>parent-modules</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<relativePath>../../</relativePath>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.containers</groupId>
|
|
<artifactId>jersey-container-servlet</artifactId>
|
|
<version>${jersey-container-servlet.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
<artifactId>jersey-media-moxy</artifactId>
|
|
<version>${jersey-media-moxy.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.rest-assured</groupId>
|
|
<artifactId>rest-assured</artifactId>
|
|
<version>${rest-assured.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.h2</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>${h2.version}</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-core</artifactId>
|
|
<version>${log4j-core.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.bull.javamelody</groupId>
|
|
<artifactId>javamelody-core</artifactId>
|
|
<version>${javamelody-core.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>${maven-war-plugin.version}</version>
|
|
<configuration>
|
|
<warSourceDirectory>WebContent</warSourceDirectory>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<properties>
|
|
<jersey-container-servlet.version>2.25.1</jersey-container-servlet.version>
|
|
<rest-assured.version>3.0.3</rest-assured.version>
|
|
<log4j-core.version>2.8.2</log4j-core.version>
|
|
<javamelody-core.version>1.69.0</javamelody-core.version>
|
|
<jersey-media-moxy.version>2.25.1</jersey-media-moxy.version>
|
|
<maven-war-plugin.version>3.0.0</maven-war-plugin.version>
|
|
</properties>
|
|
|
|
</project> |