add test scope to tool test pom

This commit is contained in:
parrt 2016-12-10 15:31:17 -08:00
parent 9cfb6890a5
commit 9d06400ef0
1 changed files with 4 additions and 8 deletions

View File

@ -27,29 +27,25 @@
<groupId>org.antlr</groupId> <groupId>org.antlr</groupId>
<artifactId>ST4</artifactId> <artifactId>ST4</artifactId>
<version>4.0.8</version> <version>4.0.8</version>
<scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.antlr</groupId> <groupId>org.antlr</groupId>
<artifactId>antlr4-runtime-testsuite</artifactId> <artifactId>antlr4-runtime-testsuite</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
<type>test-jar</type> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.antlr</groupId> <groupId>org.antlr</groupId>
<artifactId>antlr4</artifactId> <artifactId>antlr4</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> <scope>test</scope>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
</dependency> </dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>4.11</version> <version>4.11</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>