Ver código fonte

HADOOP-14677. mvn clean compile fails. Contributed by Andras Bokor.

(cherry picked from commit 0fd6d0f2d361536b2baf859ddbb082eb2eadcfcf)
Akira Ajisaka 7 anos atrás
pai
commit
b19415f1a1
1 arquivos alterados com 4 adições e 1 exclusões
  1. 4 1
      hadoop-maven-plugins/pom.xml

+ 4 - 1
hadoop-maven-plugins/pom.xml

@@ -58,6 +58,9 @@
   </dependencies>
   <build>
     <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+      </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-plugin-plugin</artifactId>
@@ -65,7 +68,7 @@
         <executions>
           <execution>
             <id>default-descriptor</id>
-            <phase>process-classes</phase>
+            <phase>compile</phase>
           </execution>
         </executions>
       </plugin>