|
51 | 51 | <scope>provided</scope> |
52 | 52 | </dependency> |
53 | 53 |
|
54 | | - <!-- TODO: Switch back to planner loader when PTF loading is patched upstream. --> |
55 | | - <!-- <dependency>--> |
56 | | - <!-- <groupId>org.apache.flink</groupId>--> |
57 | | - <!-- <artifactId>flink-table-planner-loader</artifactId>--> |
58 | | - <!-- <version>${flink.version}</version>--> |
59 | | - <!-- <scope>provided</scope>--> |
60 | | - <!-- </dependency>--> |
61 | | - |
62 | 54 | <dependency> |
63 | 55 | <groupId>org.apache.flink</groupId> |
64 | | - <artifactId>flink-table-planner_2.12</artifactId> |
| 56 | + <artifactId>flink-table-planner-loader</artifactId> |
65 | 57 | <version>${flink.version}</version> |
66 | 58 | <scope>provided</scope> |
67 | 59 | </dependency> |
|
521 | 513 | <groupId>org.apache.maven.plugins</groupId> |
522 | 514 | <artifactId>maven-dependency-plugin</artifactId> |
523 | 515 | <executions> |
524 | | - <execution> |
525 | | - <id>unpack-flink-table-planner-without-rex-json-deser</id> |
526 | | - <goals> |
527 | | - <goal>unpack</goal> |
528 | | - </goals> |
529 | | - <phase>prepare-package</phase> |
530 | | - <configuration> |
531 | | - <artifactItems> |
532 | | - <artifactItem> |
533 | | - <groupId>org.apache.flink</groupId> |
534 | | - <artifactId>flink-table-planner_2.12</artifactId> |
535 | | - <version>${flink.version}</version> |
536 | | - <type>jar</type> |
537 | | - <overWrite>true</overWrite> |
538 | | - <outputDirectory>${project.build.directory}/flink-table-planner-temp</outputDirectory> |
539 | | - <excludes>org/apache/flink/table/planner/plan/nodes/exec/serde/RexNodeJsonDeserializer**</excludes> |
540 | | - </artifactItem> |
541 | | - </artifactItems> |
542 | | - </configuration> |
543 | | - </execution> |
544 | 516 | <execution> |
545 | 517 | <id>unpack-iceberg-aws-bundle-without-logging</id> |
546 | 518 | <goals> |
|
675 | 647 | <groupId>org.apache.maven.plugins</groupId> |
676 | 648 | <artifactId>maven-antrun-plugin</artifactId> |
677 | 649 | <executions> |
678 | | - <execution> |
679 | | - <!-- Repackage flink-table-planner_2.12 and override RexNodeJsonDeserializer using antrun plugin --> |
680 | | - <id>repack-flink-table-planner</id> |
681 | | - <goals> |
682 | | - <goal>run</goal> |
683 | | - </goals> |
684 | | - <phase>prepare-package</phase> |
685 | | - <configuration> |
686 | | - <target> |
687 | | - <copy failonerror="true" todir="${project.build.directory}/flink-table-planner-temp/org/apache/flink/table/planner/plan/nodes/exec/serde"> |
688 | | - <fileset dir="${project.build.outputDirectory}/org/apache/flink/table/planner/plan/nodes/exec/serde" includes="RexNodeJsonDeserializer*.class"/> |
689 | | - </copy> |
690 | | - <jar basedir="${project.build.directory}/flink-table-planner-temp" destfile="${project.build.directory}/flink-table-planner_2.12-${flink.version}.jar"/> |
691 | | - </target> |
692 | | - </configuration> |
693 | | - </execution> |
694 | 650 | <execution> |
695 | 651 | <!-- Repackage iceberg-aws-bundle without SLF4J using antrun plugin --> |
696 | 652 | <id>repack-iceberg-aws-bundle</id> |
|
0 commit comments