|
@@ -39,6 +39,10 @@
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
<dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.hadoop.thirdparty</groupId>
|
|
|
|
+ <artifactId>hadoop-shaded-protobuf_3_7</artifactId>
|
|
|
|
+ </dependency>
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>org.apache.hadoop</groupId>
|
|
<groupId>org.apache.hadoop</groupId>
|
|
<artifactId>hadoop-annotations</artifactId>
|
|
<artifactId>hadoop-annotations</artifactId>
|
|
@@ -394,6 +398,36 @@
|
|
</execution>
|
|
</execution>
|
|
</executions>
|
|
</executions>
|
|
</plugin>
|
|
</plugin>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>com.google.code.maven-replacer-plugin</groupId>
|
|
|
|
+ <artifactId>replacer</artifactId>
|
|
|
|
+ <executions>
|
|
|
|
+ <execution>
|
|
|
|
+ <id>replace-generated-sources</id>
|
|
|
|
+ <configuration>
|
|
|
|
+ <skip>false</skip>
|
|
|
|
+ </configuration>
|
|
|
|
+ </execution>
|
|
|
|
+ <execution>
|
|
|
|
+ <id>replace-generated-test-sources</id>
|
|
|
|
+ <configuration>
|
|
|
|
+ <skip>false</skip>
|
|
|
|
+ </configuration>
|
|
|
|
+ </execution>
|
|
|
|
+ <execution>
|
|
|
|
+ <id>replace-sources</id>
|
|
|
|
+ <configuration>
|
|
|
|
+ <skip>false</skip>
|
|
|
|
+ </configuration>
|
|
|
|
+ </execution>
|
|
|
|
+ <execution>
|
|
|
|
+ <id>replace-test-sources</id>
|
|
|
|
+ <configuration>
|
|
|
|
+ <skip>false</skip>
|
|
|
|
+ </configuration>
|
|
|
|
+ </execution>
|
|
|
|
+ </executions>
|
|
|
|
+ </plugin>
|
|
<plugin>
|
|
<plugin>
|
|
<groupId>org.apache.hadoop</groupId>
|
|
<groupId>org.apache.hadoop</groupId>
|
|
<artifactId>hadoop-maven-plugins</artifactId>
|
|
<artifactId>hadoop-maven-plugins</artifactId>
|
|
@@ -856,6 +890,7 @@
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<configuration>
|
|
|
|
+ <testFailureIgnore>${ignoreTestFailure}</testFailureIgnore>
|
|
<forkCount>${testsThreadCount}</forkCount>
|
|
<forkCount>${testsThreadCount}</forkCount>
|
|
<reuseForks>false</reuseForks>
|
|
<reuseForks>false</reuseForks>
|
|
<argLine>${maven-surefire-plugin.argLine} -DminiClusterDedicatedDirs=true</argLine>
|
|
<argLine>${maven-surefire-plugin.argLine} -DminiClusterDedicatedDirs=true</argLine>
|