You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by am...@apache.org on 2018/12/09 07:31:09 UTC

[drill] 03/03: DRILL-6887: Fix FunctionInitializerTest.init() failure

This is an automated email from the ASF dual-hosted git repository.

amansinha pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git

commit e4782133563e365c858bcfb2b23845e4b0299dff
Author: Vitalii Diravka <vi...@gmail.com>
AuthorDate: Fri Dec 7 15:55:48 2018 +0200

    DRILL-6887: Fix FunctionInitializerTest.init() failure
    
    close apache/drill#1566
---
 exec/java-exec/src/test/resources/drill-udf/pom.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/exec/java-exec/src/test/resources/drill-udf/pom.xml b/exec/java-exec/src/test/resources/drill-udf/pom.xml
index 0e25cba..0a68198 100644
--- a/exec/java-exec/src/test/resources/drill-udf/pom.xml
+++ b/exec/java-exec/src/test/resources/drill-udf/pom.xml
@@ -28,6 +28,8 @@
   <version>1.0</version>
 
   <properties>
+    <maven.compiler.source>1.8</maven.compiler.source>
+    <maven.compiler.target>1.8</maven.compiler.target>
     <jar.finalName>${project.name}</jar.finalName>
     <custom.buildDirectory>${project.basedir}/target</custom.buildDirectory>
     <drill.version>1.13.0</drill.version>
@@ -58,6 +60,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
+        <version>3.8.0</version>
         <configuration>
           <includes>
             <include>${include.files}</include>