summaryrefslogtreecommitdiff
path: root/src/test/resources/project-to-test/pom.xml
diff options
context:
space:
mode:
authorBenjamin Culkin <scorpress@gmail.com>2024-05-15 18:59:22 -0400
committerBenjamin Culkin <scorpress@gmail.com>2024-05-15 18:59:22 -0400
commit68dbb2b7eaae8379bcb185428e46e083a2bf6ecb (patch)
treef74400ff9979c1290e74a51c527fb2abda4969ea /src/test/resources/project-to-test/pom.xml
Initial commit
Diffstat (limited to 'src/test/resources/project-to-test/pom.xml')
-rw-r--r--src/test/resources/project-to-test/pom.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test/resources/project-to-test/pom.xml b/src/test/resources/project-to-test/pom.xml
new file mode 100644
index 0000000..e7f929d
--- /dev/null
+++ b/src/test/resources/project-to-test/pom.xml
@@ -0,0 +1,27 @@
+<?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>
+
+ <groupId>com.ashardalon</groupId>
+ <artifactId>slim-tomcat-maven-plugin</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <name>Test MyMojo</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>com.ashardalon</groupId>
+ <artifactId>slim-tomcat-maven-plugin</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <configuration>
+ <!-- Specify the MyMojo parameter -->
+ <serverName>ashardalon-tomcat</serverName>
+ <targetWar>stachetype.war</targetWar>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>