openinx commented on pull request #1423:
URL: https://github.com/apache/iceberg/pull/1423#issuecomment-687040199
I used this patch to copy all the dependencies from `flink` module to a
separate folder.
```
diff --git a/build.gradle b/build.gradle
index 2ee676de..d0d21ec9 100644
--- a/build.gradle
+++ b/build.gradle
@@ -297,6 +297,11 @@ project(':iceberg-flink') {
exclude group: 'com.zaxxer', module: 'HikariCP'
}
}
+
+ task copyDependencies(type: Copy) {
+ from configurations.default
+ into 'dependencies'
+ }
}
project(':iceberg-flink-runtime') {
```
Here are the dependencies:
```bash
➜ dependencies git:(flink-runtime) ✗ ls -atlr
total 72120
drwxr-xr-x 6 openinx staff 192 Sep 4 17:35 ..
-rw-r--r-- 1 openinx staff 70648 Sep 4 17:35
iceberg-data-746c0c8.dirty.jar
-rw-r--r-- 1 openinx staff 80259 Sep 4 17:35
iceberg-orc-746c0c8.dirty.jar
-rw-r--r-- 1 openinx staff 269140 Sep 4 17:35
iceberg-parquet-746c0c8.dirty.jar
-rw-r--r-- 1 openinx staff 31033 Sep 4 17:35
iceberg-hive-metastore-746c0c8.dirty.jar
-rw-r--r-- 1 openinx staff 723066 Sep 4 17:35
iceberg-core-746c0c8.dirty.jar
-rw-r--r-- 1 openinx staff 341213 Sep 4 17:35
iceberg-api-746c0c8.dirty.jar
-rw-r--r-- 1 openinx staff 31339 Sep 4 17:35
iceberg-common-746c0c8.dirty.jar
-rw-r--r-- 1 openinx staff 587956 Sep 4 17:35 avro-1.9.2.jar
-rw-r--r-- 1 openinx staff 1781264 Sep 4 17:35
orc-core-1.6.3-nohive.jar
-rw-r--r-- 1 openinx staff 28953 Sep 4 17:35 orc-shims-1.6.3.jar
-rw-r--r-- 1 openinx staff 19512529 Sep 4 17:35 parquet-avro-1.11.0.jar
-rw-r--r-- 1 openinx staff 437637 Sep 4 17:35
parquet-hadoop-1.11.0.jar
-rw-r--r-- 1 openinx staff 1619439 Sep 4 17:35
parquet-column-1.11.0.jar
-rw-r--r-- 1 openinx staff 848718 Sep 4 17:35
parquet-encoding-1.11.0.jar
-rw-r--r-- 1 openinx staff 96197 Sep 4 17:35
parquet-common-1.11.0.jar
-rw-r--r-- 1 openinx staff 700667 Sep 4 17:35
parquet-format-structures-1.11.0.jar
-rw-r--r-- 1 openinx staff 41203 Sep 4 17:35 slf4j-api-1.7.25.jar
-rw-r--r-- 1 openinx staff 15322 Sep 4 17:35
findbugs-annotations-1.3.9-1.jar
-rw-r--r-- 1 openinx staff 1634977 Sep 4 17:35
iceberg-bundled-guava-746c0c8.dirty.jar
-rw-r--r-- 1 openinx staff 1403755 Sep 4 17:35
jackson-databind-2.10.2.jar
-rw-r--r-- 1 openinx staff 349074 Sep 4 17:35 jackson-core-2.10.2.jar
-rw-r--r-- 1 openinx staff 846706 Sep 4 17:35 caffeine-2.7.0.jar
-rw-r--r-- 1 openinx staff 615064 Sep 4 17:35
commons-compress-1.19.jar
-rw-r--r-- 1 openinx staff 193908 Sep 4 17:35 checker-qual-2.6.0.jar
-rw-r--r-- 1 openinx staff 13161 Sep 4 17:35
error_prone_annotations-2.3.3.jar
-rw-r--r-- 1 openinx staff 181098 Sep 4 17:35 aircompressor-0.15.jar
-rw-r--r-- 1 openinx staff 102244 Sep 4 17:35 jaxb-api-2.2.11.jar
-rw-r--r-- 1 openinx staff 19014 Sep 4 17:35 annotations-17.0.0.jar
-rw-r--r-- 1 openinx staff 233745 Sep 4 17:35 threeten-extra-1.5.0.jar
-rw-r--r-- 1 openinx staff 68080 Sep 4 17:35
jackson-annotations-2.10.2.jar
-rw-r--r-- 1 openinx staff 1786250 Sep 4 17:35
parquet-jackson-1.11.0.jar
-rw-r--r-- 1 openinx staff 2021167 Sep 4 17:35 snappy-java-1.1.7.3.jar
-rw-r--r-- 1 openinx staff 111119 Sep 4 17:35 commons-pool-1.6.jar
-rw-r--r-- 1 openinx staff 26586 Sep 4 17:35
javax.annotation-api-1.3.2.jar
drwxr-xr-x 37 openinx staff 1184 Sep 4 17:35 .
-rw-r--r-- 1 openinx staff 20924 Sep 4 17:35
audience-annotations-0.11.0.jar
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]