aboutsummaryrefslogtreecommitdiff
path: root/exec/java-exec/pom.xml
diff options
context:
space:
mode:
authorTimothy Farkas <timothyfarkas@apache.org>2017-11-22 15:02:07 -0800
committerArina Ielchiieva <arina.yelchiyeva@gmail.com>2017-11-29 12:23:57 +0200
commit54d3d201882ef5bc2e0f754fd10edfead9947b60 (patch)
tree49426e12719c58b1cad797e3a681fca3a01a329f /exec/java-exec/pom.xml
parent3d13b4f604852b959fe5ab0f21ec01d455553a2f (diff)
DRILL-5989: Categories some tests to speed up smoke tests. Made travis run tests.
closes #1053
Diffstat (limited to 'exec/java-exec/pom.xml')
-rw-r--r--exec/java-exec/pom.xml47
1 files changed, 0 insertions, 47 deletions
diff --git a/exec/java-exec/pom.xml b/exec/java-exec/pom.xml
index f534b3490..f30c1bcd4 100644
--- a/exec/java-exec/pom.xml
+++ b/exec/java-exec/pom.xml
@@ -26,8 +26,6 @@
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
- <version>1.3</version>
- <scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.kerby</groupId>
@@ -687,35 +685,6 @@
</dependency>
</dependencies>
</profile>
- <profile>
- <id>largeTests</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <executions>
- <execution>
- <id>include-large-tests</id>
- <phase>test</phase>
- <goals>
- <goal>test</goal>
- </goals>
- <configuration>
- <includes>
- <include>**/TestLargeFileCompilation.java</include>
- </includes>
- <groups>org.apache.drill.categories.SlowTest</groups>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
</profiles>
<build>
@@ -899,22 +868,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <executions>
- <execution>
- <!-- we override the default test execution to exclude tests
- that would take unusually long time to run (> 1 minute) and run such tests
- in a different profile -->
- <id>default-test</id>
- <phase>test</phase>
- <goals><goal>test</goal></goals>
- <configuration>
- <!-- Legacy: exclude by file name -->
- <excludes>
- <exclude>**/TestLargeFileCompilation.java</exclude>
- </excludes>
- </configuration>
- </execution>
- </executions>
</plugin>
</plugins>
<pluginManagement>