press-monster-java/press-monster-test/plugins-tests/pom.xml

48 lines
1.6 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>io.github.kazusa</groupId>
<artifactId>press-monster-test</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>plugins-tests</artifactId>
<packaging>jar</packaging>
<name>Plugins Tests</name>
<description>Tests for press-monster-plugins modules</description>
<dependencies>
<!-- Press Monster Plugins - modules under test -->
<dependency>
<groupId>io.github.kazusa</groupId>
<artifactId>mvc-plugin</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Press Monster Common - needed for plugin tests -->
<dependency>
<groupId>io.github.kazusa</groupId>
<artifactId>press-monster-common</artifactId>
</dependency>
<!-- Spring Web for plugin tests -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.3.37</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.37</version>
</dependency>
</dependencies>
</project>