zentol closed pull request #7292: [FLINK-11101][S3] Ban openjdk.jol dependencies
URL: https://github.com/apache/flink/pull/7292
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/flink-filesystems/flink-s3-fs-presto/pom.xml
b/flink-filesystems/flink-s3-fs-presto/pom.xml
index 5baed430cd1..913f4ade62f 100644
--- a/flink-filesystems/flink-s3-fs-presto/pom.xml
+++ b/flink-filesystems/flink-s3-fs-presto/pom.xml
@@ -194,6 +194,29 @@ under the License.
<build>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-enforcer-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>ban-openjdk.jol</id>
+ <goals>
+ <goal>enforce</goal>
+ </goals>
+ <configuration>
+ <rules>
+
<bannedDependencies>
+
<excludes>
+
<!-- Incompatible license -->
+
<exclude>org.openjdk.jol:*</exclude>
+
</excludes>
+
</bannedDependencies>
+ </rules>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
@@ -210,9 +233,6 @@ under the License.
<includes>
<include>*:*</include>
</includes>
- <excludes>
-
<exclude>org.openjdk.jol</exclude>
- </excludes>
</artifactSet>
<relocations>
<!-- relocate
the references to Hadoop to match the pre-shaded hadoop artifact -->
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services