summaryrefslogtreecommitdiff
path: root/antlr4-maven-plugin/src/test/projects/dependencyRemoved/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'antlr4-maven-plugin/src/test/projects/dependencyRemoved/pom.xml')
-rw-r--r--antlr4-maven-plugin/src/test/projects/dependencyRemoved/pom.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/antlr4-maven-plugin/src/test/projects/dependencyRemoved/pom.xml b/antlr4-maven-plugin/src/test/projects/dependencyRemoved/pom.xml
new file mode 100644
index 0000000..3163b81
--- /dev/null
+++ b/antlr4-maven-plugin/src/test/projects/dependencyRemoved/pom.xml
@@ -0,0 +1,33 @@
+<!--
+ ~ Copyright (c) 2012-2016 The ANTLR Project. All rights reserved.
+ ~ Use of this file is governed by the BSD 3-clause license that
+ ~ can be found in the LICENSE.txt file in the project root.
+ -->
+
+<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>deps.removed</groupId>
+ <artifactId>depRemoved</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <name>Test processing after dependency removed</name>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.11</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>antlr4-maven-plugin</artifactId>
+ <configuration>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>