guoweiM commented on a change in pull request #16950:
URL: https://github.com/apache/flink/pull/16950#discussion_r695322819



##########
File path: flink-formats/flink-orc/pom.xml
##########
@@ -18,175 +18,183 @@ specific language governing permissions and limitations
 under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-               xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
-       
-       <modelVersion>4.0.0</modelVersion>
-
-       <parent>
-               <groupId>org.apache.flink</groupId>
-               <artifactId>flink-formats</artifactId>
-               <version>1.14-SNAPSHOT</version>
-               <relativePath>..</relativePath>
-       </parent>
-
-       <artifactId>flink-orc_${scala.binary.version}</artifactId>
-       <name>Flink : Formats : Orc</name>
-
-       <packaging>jar</packaging>
-
-       <dependencies>
-
-               <!-- Core -->
-
-               <dependency>
-                       <groupId>org.apache.flink</groupId>
-                       
<artifactId>flink-streaming-java_${scala.binary.version}</artifactId>
-                       <version>${project.version}</version>
-                       <scope>provided</scope>
-               </dependency>
-
-               <!-- Table ecosystem -->
-
-               <dependency>
-                       <groupId>org.apache.flink</groupId>
-                       
<artifactId>flink-table-runtime_${scala.binary.version}</artifactId>
-                       <version>${project.version}</version>
-                       <scope>provided</scope>
-               </dependency>
-
-               <!-- ORC -->
-
-               <dependency>
-                       <groupId>org.apache.orc</groupId>
-                       <artifactId>orc-core</artifactId>
-                       <version>${orc.version}</version>
-                       <exclusions>
-                               <!-- Exclude ORC's Hadoop dependency and pull 
in provided vanilla hadoop. -->
-                               <exclusion>
-                                       <groupId>org.apache.hadoop</groupId>
-                                       <artifactId>hadoop-common</artifactId>
-                               </exclusion>
-                               <exclusion>
-                                       <groupId>org.apache.hadoop</groupId>
-                                       <artifactId>hadoop-hdfs</artifactId>
-                               </exclusion>
-                               <exclusion>
-                                       <groupId>javax.activation</groupId>
-                                       
<artifactId>javax.activation-api</artifactId>
-                               </exclusion>
-                               <exclusion>
-                                       <groupId>javax.xml.bind</groupId>
-                                       <artifactId>jaxb-api</artifactId>
-                               </exclusion>
-                       </exclusions>
-               </dependency>
-
-               <dependency>
-                       <groupId>org.apache.commons</groupId>
-                       <artifactId>commons-lang3</artifactId>
-                       <scope>provided</scope>
-               </dependency>
-
-               <dependency>
-                       <groupId>org.apache.hadoop</groupId>
-                       <artifactId>hadoop-common</artifactId>
-                       <scope>provided</scope>
-               </dependency>
-
-               <dependency>
-                       <groupId>org.apache.hadoop</groupId>
-                       <artifactId>hadoop-hdfs</artifactId>
-                       <scope>provided</scope>
-               </dependency>
-
-               <!-- Tests -->
-
-               <dependency>
-                       <groupId>org.apache.flink</groupId>
-                       
<artifactId>flink-test-utils_${scala.binary.version}</artifactId>
-                       <version>${project.version}</version>
-                       <scope>test</scope>
-               </dependency>
-
-               <dependency>
-                       <groupId>org.apache.flink</groupId>
-                       
<artifactId>flink-streaming-java_${scala.binary.version}</artifactId>
-                       <version>${project.version}</version>
-                       <scope>test</scope>
-                       <type>test-jar</type>
-               </dependency>
-
-               <dependency>
-                       <groupId>org.apache.flink</groupId>
-                       <artifactId>flink-statebackend-changelog</artifactId>
-                       <version>${project.version}</version>
-                       <scope>test</scope>
-               </dependency>
-
-               <dependency>
-                       <groupId>org.apache.flink</groupId>
-                       
<artifactId>flink-table-planner_${scala.binary.version}</artifactId>
-                       <version>${project.version}</version>
-                       <scope>test</scope>
-               </dependency>
-
-               <dependency>
-                       <groupId>org.apache.flink</groupId>
-                       
<artifactId>flink-table-planner_${scala.binary.version}</artifactId>
-                       <version>${project.version}</version>
-                       <scope>test</scope>
-                       <type>test-jar</type>
-               </dependency>
-
-       </dependencies>
-
-       <profiles>
-               <profile>
-                       <!-- This profile adds dependencies needed to execute 
the tests
-                       with Hadoop 3 -->
-                       <id>hadoop3-tests</id>
-                       <dependencies>
-                               <dependency>
-                                       <groupId>org.apache.hadoop</groupId>
-                                       
<artifactId>hadoop-hdfs-client</artifactId>
-                                       <version>${hadoop.version}</version>
-                                       <scope>test</scope>
-                               </dependency>
-                       </dependencies>
-               </profile>
-       </profiles>
-
-
-       <build>
-               <plugins>
-                       <!-- skip dependency convergence due to Hadoop 
dependency -->
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-enforcer-plugin</artifactId>
-                               <executions>
-                                       <execution>
-                                               <id>dependency-convergence</id>
-                                               <goals>
-                                                       <goal>enforce</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <skip>true</skip>
-                                               </configuration>
-                                       </execution>
-                               </executions>
-                       </plugin>
-
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-jar-plugin</artifactId>
-                               <executions>
-                                       <execution>
-                                               <goals>
-                                                       <goal>test-jar</goal>
-                                               </goals>
-                                       </execution>
-                               </executions>
-                       </plugin>
-               </plugins>
-       </build>
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>

Review comment:
       I think the most diff is from the format. Maybe we could avoid this. 
WDYT?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to