Merge pull request #2778 from OpenRefine/2777-test-dependencies

Restrict copied jars to runtime dependencies
This commit is contained in:
Tom Morris 2020-06-21 15:09:28 -04:00 committed by GitHub
commit 2977ffa167
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,6 +100,7 @@
</goals>
<configuration>
<outputDirectory>webapp/WEB-INF/lib</outputDirectory>
<includeScope>runtime</includeScope>
</configuration>
</execution>
</executions>
@ -351,7 +352,11 @@
<artifactId>guava</artifactId>
<version>24.1.1-jre</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<!-- test dependencies -->
@ -367,11 +372,6 @@
<version>3.3.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-testng</artifactId>