dongjoon-hyun commented on issue #1543:
URL: https://github.com/apache/orc/issues/1543#issuecomment-1837640531

   I removed the shading from @mystic-lama 's repo like the following.
   - 
https://github.com/dongjoon-hyun/orc/commit/60c33ac67d8eedbef3324d43e911e88f1f434bc8
   
   ```
   $ git diff
   diff --git a/pom.xml b/pom.xml
   index 5d9b72e..32cbd04 100644
   --- a/pom.xml
   +++ b/pom.xml
   @@ -143,92 +143,6 @@
                        <destDir>${project.artifactId}</destDir>
                    </configuration>
                </plugin>
   -            <plugin>
   -                <groupId>org.apache.maven.plugins</groupId>
   -                <artifactId>maven-shade-plugin</artifactId>
   -                <version>${maven-shade-plugin.version}</version>
   -                <executions>
   -                    <execution>
   -                        <id>shaded-protobuf</id>
   -                        <goals>
   -                            <goal>shade</goal>
   -                        </goals>
   -                        <phase>package</phase>
   -                        <configuration>
   -                            <artifactSet>
   -                                <includes>
   -                                    
<include>com.google.protobuf:protobuf-java</include>
   -                                </includes>
   -                            </artifactSet>
   -                            
<shadedArtifactAttached>true</shadedArtifactAttached>
   -                            
<shadedClassifierName>shaded-protobuf</shadedClassifierName>
   -                            <relocations>
   -                                <relocation>
   -                                    <pattern>com.google.protobuf</pattern>
   -                                    
<shadedPattern>org.apache.orc.protobuf</shadedPattern>
   -                                </relocation>
   -                            </relocations>
   -                            <filters>
   -                                <filter>
   -                                    <artifact>*:*</artifact>
   -                                    <excludes>
   -                                        <exclude>module-info.class</exclude>
   -                                        
<exclude>META-INF/MANIFEST.MF</exclude>
   -                                        
<exclude>META-INF/DEPENDENCIES</exclude>
   -                                        <exclude>META-INF/LICENSE</exclude>
   -                                        <exclude>META-INF/NOTICE</exclude>
   -                                        
<exclude>google/protobuf/**</exclude>
   -                                    </excludes>
   -                                </filter>
   -                            </filters>
   -                        </configuration>
   -                    </execution>
   -                    <execution>
   -                        <id>nohive</id>
   -                        <goals>
   -                            <goal>shade</goal>
   -                        </goals>
   -                        <phase>package</phase>
   -                        <configuration>
   -                            <artifactSet>
   -                                <includes>
   -                                    
<include>com.google.protobuf:protobuf-java</include>
   -                                    
<include>org.apache.hive:hive-storage-api</include>
   -                                </includes>
   -                            </artifactSet>
   -                            
<shadedArtifactAttached>true</shadedArtifactAttached>
   -                            
<shadedClassifierName>nohive</shadedClassifierName>
   -                            <relocations>
   -                                <relocation>
   -                                    <pattern>com.google.protobuf</pattern>
   -                                    
<shadedPattern>org.apache.orc.protobuf</shadedPattern>
   -                                </relocation>
   -                                <relocation>
   -                                    
<pattern>org.apache.hadoop.hive</pattern>
   -                                    
<shadedPattern>org.apache.orc.storage</shadedPattern>
   -                                </relocation>
   -                                <relocation>
   -                                    <pattern>org.apache.hive</pattern>
   -                                    
<shadedPattern>org.apache.orc.storage</shadedPattern>
   -                                </relocation>
   -                            </relocations>
   -                            <filters>
   -                                <filter>
   -                                    <artifact>*:*</artifact>
   -                                    <excludes>
   -                                        <exclude>module-info.class</exclude>
   -                                        
<exclude>META-INF/MANIFEST.MF</exclude>
   -                                        
<exclude>META-INF/DEPENDENCIES</exclude>
   -                                        <exclude>META-INF/LICENSE</exclude>
   -                                        <exclude>META-INF/NOTICE</exclude>
   -                                        
<exclude>google/protobuf/**</exclude>
   -                                    </excludes>
   -                                </filter>
   -                            </filters>
   -                        </configuration>
   -                    </execution>
   -                </executions>
   -            </plugin>
   ```


-- 
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