|
25 | 25 | <version>1.8.0-SNAPSHOT</version> |
26 | 26 | <relativePath>../pom.xml</relativePath> |
27 | 27 | </parent> |
28 | | - <artifactId>sedona-flink_${scala.compat.version}</artifactId> |
| 28 | + <artifactId>sedona-flink</artifactId> |
29 | 29 |
|
30 | 30 | <name>${project.groupId}:${project.artifactId}</name> |
31 | 31 | <description>A cluster computing system for processing large-scale spatial data: Streaming API for Apache Flink.</description> |
|
83 | 83 | <!-- Starting Flink 14, Blink planner has been renamed to the official Flink planner--> |
84 | 84 | <dependency> |
85 | 85 | <groupId>org.apache.flink</groupId> |
86 | | - <artifactId>flink-table-planner_${scala.compat.version}</artifactId> |
| 86 | + <artifactId>flink-table-planner-loader</artifactId> |
87 | 87 | <version>${flink.version}</version> |
88 | 88 | <scope>${flink.scope}</scope> |
89 | 89 | </dependency> |
|
119 | 119 | <artifactId>gt-epsg-hsql</artifactId> |
120 | 120 | </dependency> |
121 | 121 | <dependency> |
122 | | - <groupId>org.scala-lang</groupId> |
123 | | - <artifactId>scala-library</artifactId> |
124 | | - <version>${scala.version}</version> |
| 122 | + <groupId>org.apache.flink</groupId> |
| 123 | + <artifactId>flink-table-api-java</artifactId> |
| 124 | + <version>${flink.version}</version> |
| 125 | + <scope>${flink.scope}</scope> |
| 126 | + </dependency> |
| 127 | + <dependency> |
| 128 | + <groupId>com.jayway.jsonpath</groupId> |
| 129 | + <artifactId>json-path</artifactId> |
| 130 | + <version>2.7.0</version> |
| 131 | + <scope>test</scope> |
| 132 | + </dependency> |
| 133 | + <dependency> |
| 134 | + <groupId>org.apache.flink</groupId> |
| 135 | + <artifactId>flink-table-planner_${scala.compat.version}</artifactId> |
| 136 | + <version>${flink.version}</version> |
| 137 | + <scope>test</scope> |
| 138 | + </dependency> |
| 139 | + <dependency> |
| 140 | + <groupId>org.apache.flink</groupId> |
| 141 | + <artifactId>flink-table-api-scala-bridge_${scala.compat.version}</artifactId> |
| 142 | + <version>${flink.version}</version> |
| 143 | + <scope>test</scope> |
125 | 144 | </dependency> |
126 | 145 | <dependency> |
127 | 146 | <groupId>org.apache.logging.log4j</groupId> |
|
141 | 160 | <scope>compile</scope> |
142 | 161 | </dependency> |
143 | 162 | </dependencies> |
| 163 | + <build> |
| 164 | + <plugins> |
| 165 | + <plugin> |
| 166 | + <groupId>org.apache.maven.plugins</groupId> |
| 167 | + <artifactId>maven-surefire-plugin</artifactId> |
| 168 | + <configuration> |
| 169 | + <classpathDependencyExcludes> |
| 170 | + <classpathDependencyExclude>org.apache.flink:flink-table-planner-loader</classpathDependencyExclude> |
| 171 | + </classpathDependencyExcludes> |
| 172 | + </configuration> |
| 173 | + </plugin> |
| 174 | + </plugins> |
| 175 | + </build> |
144 | 176 | </project> |
0 commit comments