You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building with the following command:
mvn clean package -Pdist -Dhadoop.plat.version=3.3.1 -Dhadoop.version=3.3.1 -Dmaven.test.skip=true
The build failures.
First the duplicated class error for OBSClientFactory. There are two java files (OBSClientFactory.java and ObsClientFactory.java) which have the definition of the same interface.
When delelete ObsClientFactory.java and the compile goes on but a few compiling errors for StringUtils and other functions from commons. Seems that the jar is not available using hadoop 3.3.1 dependency. Hadoop 3.1.1 is correct.
The text was updated successfully, but these errors were encountered:
Replace apache.commons.lang import with apache.commons.lang3 because Hadoop 3.3.1 is depending commons.lang3 instead of commons.lang.
sed -i "s/apache.commons.lang/apache.commons.lang3/g" grep "apache.commons.lang" -rl ./
When building with the following command:
mvn clean package -Pdist -Dhadoop.plat.version=3.3.1 -Dhadoop.version=3.3.1 -Dmaven.test.skip=true
The build failures.
The text was updated successfully, but these errors were encountered: