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

xushiyan pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 7f09d9f798 [MINOR][DOCS] Clean some files (#7213)
7f09d9f798 is described below

commit 7f09d9f798121ae2eb323a3df0644d0c7132c360
Author: Zhaojing Yu <[email protected]>
AuthorDate: Thu Nov 17 21:10:11 2022 +0800

    [MINOR][DOCS] Clean some files (#7213)
---
 hudi-integ-test/compose_env                        |   1 -
 .../dependency-reduced-pom.xml                     | 148 ------------
 .../dependency-reduced-pom.xml                     | 249 ---------------------
 3 files changed, 398 deletions(-)

diff --git a/hudi-integ-test/compose_env b/hudi-integ-test/compose_env
deleted file mode 100644
index 7117645d8b..0000000000
--- a/hudi-integ-test/compose_env
+++ /dev/null
@@ -1 +0,0 @@
-HUDI_WS=/Users/bytedance/work/hudi
diff --git a/hudi-table-management-service/dependency-reduced-pom.xml 
b/hudi-table-management-service/dependency-reduced-pom.xml
deleted file mode 100644
index 8ba0dc412d..0000000000
--- a/hudi-table-management-service/dependency-reduced-pom.xml
+++ /dev/null
@@ -1,148 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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";>
-  <parent>
-    <artifactId>hudi</artifactId>
-    <groupId>org.apache.hudi</groupId>
-    <version>0.12.1-rc1</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>hudi-table-management-service</artifactId>
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.jacoco</groupId>
-        <artifactId>jacoco-maven-plugin</artifactId>
-      </plugin>
-      <plugin>
-        <artifactId>maven-jar-plugin</artifactId>
-        <version>${maven-jar-plugin.version}</version>
-        <executions>
-          <execution>
-            <phase>test-compile</phase>
-            <goals>
-              <goal>test-jar</goal>
-            </goals>
-          </execution>
-        </executions>
-        <configuration>
-          <skip>false</skip>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.rat</groupId>
-        <artifactId>apache-rat-plugin</artifactId>
-      </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>build-helper-maven-plugin</artifactId>
-        <version>${build-helper-maven-plugin.version}</version>
-        <executions>
-          <execution>
-            <id>add-source</id>
-            <phase>generate-sources</phase>
-            <goals>
-              <goal>add-source</goal>
-            </goals>
-            <configuration>
-              <sources>
-                <source>src/main/java</source>
-              </sources>
-            </configuration>
-          </execution>
-          <execution>
-            <id>add-test-source</id>
-            <phase>generate-sources</phase>
-            <goals>
-              <goal>add-test-source</goal>
-            </goals>
-            <configuration>
-              <sources>
-                <source>src/test/java</source>
-                <source>src/main/java</source>
-              </sources>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-      <plugin>
-        <artifactId>maven-shade-plugin</artifactId>
-        <version>${maven-shade-plugin.version}</version>
-        <executions>
-          <execution>
-            <phase>package</phase>
-            <goals>
-              <goal>shade</goal>
-            </goals>
-            <configuration>
-              <createSourcesJar>${shadeSources}</createSourcesJar>
-              <transformers>
-                <transformer>
-                  
<mainClass>org.apache.hudi.table.management.TableManagementServer</mainClass>
-                </transformer>
-                <transformer />
-                <transformer>
-                  <addHeader>true</addHeader>
-                </transformer>
-                <transformer>
-                  <resource>META-INF/LICENSE</resource>
-                  <file>target/classes/META-INF/LICENSE</file>
-                </transformer>
-              </transformers>
-              <filters>
-                <filter>
-                  <artifact>*:*</artifact>
-                  <excludes>
-                    <exclude>META-INF/*.SF</exclude>
-                    <exclude>META-INF/*.DSA</exclude>
-                    <exclude>META-INF/*.RSA</exclude>
-                    <exclude>META-INF/services/javax.*</exclude>
-                  </excludes>
-                </filter>
-              </filters>
-              <finalName>${project.artifactId}-${project.version}</finalName>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.avro</groupId>
-      <artifactId>avro</artifactId>
-      <version>1.8.2</version>
-      <scope>provided</scope>
-      <exclusions>
-        <exclusion>
-          <artifactId>slf4j-api</artifactId>
-          <groupId>org.slf4j</groupId>
-        </exclusion>
-      </exclusions>
-    </dependency>
-    <dependency>
-      <groupId>org.junit.jupiter</groupId>
-      <artifactId>junit-jupiter-api</artifactId>
-      <version>5.7.2</version>
-      <scope>test</scope>
-      <exclusions>
-        <exclusion>
-          <artifactId>apiguardian-api</artifactId>
-          <groupId>org.apiguardian</groupId>
-        </exclusion>
-        <exclusion>
-          <artifactId>opentest4j</artifactId>
-          <groupId>org.opentest4j</groupId>
-        </exclusion>
-        <exclusion>
-          <artifactId>junit-platform-commons</artifactId>
-          <groupId>org.junit.platform</groupId>
-        </exclusion>
-      </exclusions>
-    </dependency>
-  </dependencies>
-  <properties>
-    <mybatis.version>3.4.6</mybatis.version>
-    <maven.compiler.source>8</maven.compiler.source>
-    <maven.compiler.target>8</maven.compiler.target>
-  </properties>
-</project>
diff --git a/packaging/hudi-timeline-server-bundle/dependency-reduced-pom.xml 
b/packaging/hudi-timeline-server-bundle/dependency-reduced-pom.xml
deleted file mode 100644
index 9d7cff286c..0000000000
--- a/packaging/hudi-timeline-server-bundle/dependency-reduced-pom.xml
+++ /dev/null
@@ -1,249 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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";>
-  <parent>
-    <artifactId>hudi</artifactId>
-    <groupId>org.apache.hudi</groupId>
-    <version>0.12.1</version>
-    <relativePath>../../pom.xml</relativePath>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>hudi-timeline-server-bundle</artifactId>
-  <build>
-    <resources>
-      <resource>
-        <directory>src/main/resources</directory>
-      </resource>
-    </resources>
-    <plugins>
-      <plugin>
-        <artifactId>maven-shade-plugin</artifactId>
-        <version>${maven-shade-plugin.version}</version>
-        <executions>
-          <execution>
-            <phase>package</phase>
-            <goals>
-              <goal>shade</goal>
-            </goals>
-            <configuration>
-              <transformers>
-                <transformer />
-                <transformer>
-                  
<mainClass>org.apache.hudi.timeline.service.TimelineService</mainClass>
-                </transformer>
-              </transformers>
-            </configuration>
-          </execution>
-        </executions>
-        <configuration>
-          <createDependencyReducedPom>true</createDependencyReducedPom>
-          <filters>
-            <filter>
-              <artifact>*:*</artifact>
-              <excludes>
-                <exclude>META-INF/*.SF</exclude>
-                <exclude>META-INF/*.DSA</exclude>
-                <exclude>META-INF/*.RSA</exclude>
-                <exclude>META-INF/services/javax.*</exclude>
-                <exclude>**/*.proto</exclude>
-                <exclude>hbase-webapps/**</exclude>
-              </excludes>
-            </filter>
-          </filters>
-          <artifactSet>
-            <includes>
-              <include>org.apache.hudi:hudi-common</include>
-              <include>org.apache.hudi:hudi-timeline-service</include>
-              <include>org.apache.httpcomponents:httpclient</include>
-              <include>org.apache.httpcomponents:httpcore</include>
-              <include>org.mortbay.jetty:jetty</include>
-              <include>org.mortbay.jetty:jetty-util</include>
-              <include>org.apache.httpcomponents:fluent-hc</include>
-              <include>io.javalin:javalin</include>
-              <include>org.jetbrains.kotlin:kotlin-stdlib-jdk8</include>
-              <include>org.jetbrains.kotlin:kotlin-stdlib</include>
-              <include>org.jetbrains.kotlin:kotlin-stdlib-common</include>
-              <include>org.jetbrains:annotations</include>
-              <include>org.jetbrains.kotlin:kotlin-stdlib-jdk7</include>
-              <include>org.eclipse.jetty:jetty-server</include>
-              <include>org.eclipse.jetty:jetty-http</include>
-              <include>org.eclipse.jetty:jetty-util</include>
-              <include>org.eclipse.jetty:jetty-io</include>
-              <include>org.eclipse.jetty:jetty-webapp</include>
-              <include>org.eclipse.jetty:jetty-xml</include>
-              <include>org.eclipse.jetty:jetty-servlet</include>
-              <include>org.eclipse.jetty:jetty-security</include>
-              <include>org.eclipse.jetty.websocket:websocket-server</include>
-              <include>org.eclipse.jetty.websocket:websocket-common</include>
-              <include>org.eclipse.jetty.websocket:websocket-api</include>
-              <include>org.eclipse.jetty.websocket:websocket-client</include>
-              <include>org.eclipse.jetty:jetty-client</include>
-              <include>org.eclipse.jetty.websocket:websocket-servlet</include>
-              <include>com.beust:jcommander</include>
-              <include>org.rocksdb:rocksdbjni</include>
-              <include>org.codehaus.jackson:jackson-core-asl</include>
-              <include>org.codehaus.jackson:jackson-mapper-asl</include>
-              <include>com.fasterxml.jackson.core:jackson-annotations</include>
-              <include>com.fasterxml.jackson.core:jackson-core</include>
-              <include>com.fasterxml.jackson.core:jackson-databind</include>
-              <include>org.apache.hbase:hbase-common</include>
-              <include>org.apache.hbase:hbase-client</include>
-              <include>org.apache.hbase:hbase-hadoop-compat</include>
-              <include>org.apache.hbase:hbase-hadoop2-compat</include>
-              <include>org.apache.hbase:hbase-metrics</include>
-              <include>org.apache.hbase:hbase-metrics-api</include>
-              <include>org.apache.hbase:hbase-protocol</include>
-              <include>org.apache.hbase:hbase-protocol-shaded</include>
-              <include>org.apache.hbase:hbase-server</include>
-              
<include>org.apache.hbase.thirdparty:hbase-shaded-miscellaneous</include>
-              <include>org.apache.hbase.thirdparty:hbase-shaded-netty</include>
-              
<include>org.apache.hbase.thirdparty:hbase-shaded-protobuf</include>
-              <include>org.apache.htrace:htrace-core4</include>
-              <include>com.esotericsoftware:kryo-shaded</include>
-              <include>com.esotericsoftware:minlog</include>
-              <include>commons-io:commons-io</include>
-              <include>log4j:log4j</include>
-              <include>org.objenesis:objenesis</include>
-              <include>org.openjdk.jol:jol-core</include>
-            </includes>
-          </artifactSet>
-          <relocations>
-            <relocation>
-              <pattern>org.apache.commons.io.</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.commons.io.</shadedPattern>
-            </relocation>
-            <relocation>
-              <pattern>org.apache.hadoop.hbase.</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.hadoop.hbase.</shadedPattern>
-              <excludes>
-                
<exclude>org.apache.hadoop.hbase.KeyValue$KeyComparator</exclude>
-              </excludes>
-            </relocation>
-            <relocation>
-              <pattern>org.apache.hbase.</pattern>
-              <shadedPattern>org.apache.hudi.org.apache.hbase.</shadedPattern>
-            </relocation>
-            <relocation>
-              <pattern>org.apache.htrace.</pattern>
-              <shadedPattern>org.apache.hudi.org.apache.htrace.</shadedPattern>
-            </relocation>
-            <relocation>
-              <pattern>org.openjdk.jol.</pattern>
-              <shadedPattern>org.apache.hudi.org.openjdk.jol.</shadedPattern>
-            </relocation>
-            <relocation>
-              <pattern>org.apache.hadoop.metrics2.MetricHistogram</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.hadoop.metrics2.MetricHistogram</shadedPattern>
-            </relocation>
-            <relocation>
-              <pattern>org.apache.hadoop.metrics2.MetricsExecutor</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.hadoop.metrics2.MetricsExecutor</shadedPattern>
-            </relocation>
-            <relocation>
-              <pattern>org.apache.hadoop.metrics2.impl.JmxCacheBuster</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.hadoop.metrics2.impl.JmxCacheBuster</shadedPattern>
-            </relocation>
-            <relocation>
-              
<pattern>org.apache.hadoop.metrics2.lib.DefaultMetricsSystemHelper</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.hadoop.metrics2.lib.DefaultMetricsSystemHelper</shadedPattern>
-            </relocation>
-            <relocation>
-              
<pattern>org.apache.hadoop.metrics2.lib.DynamicMetricsRegistry</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.hadoop.metrics2.lib.DynamicMetricsRegistry</shadedPattern>
-            </relocation>
-            <relocation>
-              
<pattern>org.apache.hadoop.metrics2.lib.MetricsExecutorImpl</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.hadoop.metrics2.lib.MetricsExecutorImpl</shadedPattern>
-            </relocation>
-            <relocation>
-              
<pattern>org.apache.hadoop.metrics2.lib.MutableFastCounter</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.hadoop.metrics2.lib.MutableFastCounter</shadedPattern>
-            </relocation>
-            <relocation>
-              
<pattern>org.apache.hadoop.metrics2.lib.MutableHistogram</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.hadoop.metrics2.lib.MutableHistogram</shadedPattern>
-            </relocation>
-            <relocation>
-              
<pattern>org.apache.hadoop.metrics2.lib.MutableRangeHistogram</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.hadoop.metrics2.lib.MutableRangeHistogram</shadedPattern>
-            </relocation>
-            <relocation>
-              
<pattern>org.apache.hadoop.metrics2.lib.MutableSizeHistogram</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.hadoop.metrics2.lib.MutableSizeHistogram</shadedPattern>
-            </relocation>
-            <relocation>
-              
<pattern>org.apache.hadoop.metrics2.lib.MutableTimeHistogram</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.hadoop.metrics2.lib.MutableTimeHistogram</shadedPattern>
-            </relocation>
-            <relocation>
-              <pattern>org.apache.hadoop.metrics2.util.MetricQuantile</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.hadoop.metrics2.util.MetricQuantile</shadedPattern>
-            </relocation>
-            <relocation>
-              
<pattern>org.apache.hadoop.metrics2.util.MetricSampleQuantiles</pattern>
-              
<shadedPattern>org.apache.hudi.org.apache.hadoop.metrics2.util.MetricSampleQuantiles</shadedPattern>
-            </relocation>
-          </relocations>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.hadoop</groupId>
-      <artifactId>hadoop-hdfs</artifactId>
-      <version>2.10.1</version>
-      <scope>provided</scope>
-      <exclusions>
-        <exclusion>
-          <artifactId>*</artifactId>
-          <groupId>org.mortbay.jetty</groupId>
-        </exclusion>
-        <exclusion>
-          <artifactId>*</artifactId>
-          <groupId>javax.servlet.jsp</groupId>
-        </exclusion>
-        <exclusion>
-          <artifactId>*</artifactId>
-          <groupId>javax.servlet</groupId>
-        </exclusion>
-      </exclusions>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.hadoop</groupId>
-      <artifactId>hadoop-common</artifactId>
-      <version>2.10.1</version>
-      <scope>provided</scope>
-      <exclusions>
-        <exclusion>
-          <artifactId>*</artifactId>
-          <groupId>org.mortbay.jetty</groupId>
-        </exclusion>
-        <exclusion>
-          <artifactId>*</artifactId>
-          <groupId>javax.servlet.jsp</groupId>
-        </exclusion>
-        <exclusion>
-          <artifactId>*</artifactId>
-          <groupId>javax.servlet</groupId>
-        </exclusion>
-      </exclusions>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.hadoop</groupId>
-      <artifactId>hadoop-client</artifactId>
-      <version>2.10.1</version>
-      <scope>provided</scope>
-      <exclusions>
-        <exclusion>
-          <artifactId>*</artifactId>
-          <groupId>javax.servlet</groupId>
-        </exclusion>
-      </exclusions>
-    </dependency>
-  </dependencies>
-  <properties>
-    <skipTests>true</skipTests>
-    <main.basedir>${project.parent.basedir}</main.basedir>
-    <checkstyle.skip>true</checkstyle.skip>
-  </properties>
-</project>

Reply via email to