|
6 | 6 |
|
7 | 7 | <groupId>com.taosdata.flink</groupId>
|
8 | 8 | <artifactId>flink-connector-tdengine</artifactId>
|
9 |
| - <version>2.0.0</version> |
| 9 | + <version>2.0.1</version> |
10 | 10 | <packaging>jar</packaging>
|
11 | 11 |
|
12 | 12 | <name>flink-connector-tdengine</name>
|
|
42 | 42 | <product.version>3.0.0.0</product.version>
|
43 | 43 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
44 | 44 | <java.version>1.8</java.version>
|
45 |
| - <taos.jdbcdriver.version>3.3.0</taos.jdbcdriver.version> |
46 |
| - <flink.version>1.18.0</flink.version> |
| 45 | + <flink.version>1.20.0</flink.version> |
47 | 46 | <scala.binary.version>2.12</scala.binary.version>
|
48 | 47 | <maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
|
| 48 | + <hamcrest.version>1.3</hamcrest.version> |
| 49 | + <powermock.version>2.0.9</powermock.version> |
| 50 | + <jackson.version>2.18.0</jackson.version> |
| 51 | + <taos.jdbcdriver.version>3.5.2</taos.jdbcdriver.version> |
49 | 52 | </properties>
|
50 | 53 |
|
| 54 | + <dependencyManagement> |
| 55 | + <dependencies> |
| 56 | + <dependency> |
| 57 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 58 | + <artifactId>jackson-annotations</artifactId> |
| 59 | + <version>${jackson.version}</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 63 | + <artifactId>jackson-core</artifactId> |
| 64 | + <version>${jackson.version}</version> |
| 65 | + </dependency> |
| 66 | + |
| 67 | + <dependency> |
| 68 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 69 | + <artifactId>jackson-databind</artifactId> |
| 70 | + <version>${jackson.version}</version> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 74 | + <artifactId>jackson-datatype-jsr310</artifactId> |
| 75 | + <version>${jackson.version}</version> |
| 76 | + </dependency> |
| 77 | + |
| 78 | + <dependency> |
| 79 | + <groupId>org.apache.logging.log4j</groupId> |
| 80 | + <artifactId>log4j-api</artifactId> |
| 81 | + <version>2.17.1</version> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>org.apache.logging.log4j</groupId> |
| 85 | + <artifactId>log4j-core</artifactId> |
| 86 | + <version>2.17.1</version> |
| 87 | + </dependency> |
| 88 | + </dependencies> |
| 89 | + </dependencyManagement> |
| 90 | + |
51 | 91 | <dependencies>
|
52 | 92 | <dependency>
|
53 | 93 | <groupId>com.taosdata.jdbc</groupId>
|
|
59 | 99 | <groupId>org.apache.flink</groupId>
|
60 | 100 | <artifactId>flink-streaming-java</artifactId>
|
61 | 101 | <version>${flink.version}</version>
|
62 |
| - <scope>compile</scope> |
63 | 102 | </dependency>
|
64 | 103 |
|
65 | 104 | <dependency>
|
66 | 105 | <groupId>org.apache.flink</groupId>
|
67 |
| - <artifactId>flink-scala_${scala.binary.version}</artifactId> |
| 106 | + <artifactId>flink-connector-base</artifactId> |
68 | 107 | <version>${flink.version}</version>
|
69 | 108 | </dependency>
|
70 | 109 |
|
|
76 | 115 |
|
77 | 116 | <dependency>
|
78 | 117 | <groupId>org.apache.flink</groupId>
|
79 |
| - <artifactId>flink-tests</artifactId> |
| 118 | + <artifactId>flink-table-planner_${scala.binary.version}</artifactId> |
80 | 119 | <version>${flink.version}</version>
|
81 |
| - <type>test-jar</type> |
| 120 | + </dependency> |
| 121 | + |
| 122 | + <dependency> |
| 123 | + <groupId>org.apache.flink</groupId> |
| 124 | + <artifactId>flink-scala_${scala.binary.version}</artifactId> |
| 125 | + <version>${flink.version}</version> |
| 126 | + </dependency> |
| 127 | + |
| 128 | + <dependency> |
| 129 | + <groupId>org.apache.flink</groupId> |
| 130 | + <artifactId>flink-core</artifactId> |
| 131 | + <version>${flink.version}</version> |
| 132 | + </dependency> |
| 133 | + <!-- Table ecosystem --> |
| 134 | + |
| 135 | + <!-- Projects depending on this project won't depend on flink-table-*. --> |
| 136 | + <dependency> |
| 137 | + <groupId>org.apache.flink</groupId> |
| 138 | + <artifactId>flink-table-api-java-bridge</artifactId> |
| 139 | + <version>${flink.version}</version> |
| 140 | + </dependency> |
| 141 | + |
| 142 | + <!-- Tests --> |
| 143 | + <dependency> |
| 144 | + <groupId>org.hamcrest</groupId> |
| 145 | + <artifactId>hamcrest-all</artifactId> |
| 146 | + <version>${hamcrest.version}</version> |
| 147 | + <scope>test</scope> |
| 148 | + </dependency> |
| 149 | + |
| 150 | + <dependency> |
| 151 | + <groupId>org.powermock</groupId> |
| 152 | + <artifactId>powermock-module-junit4</artifactId> |
| 153 | + <version>${powermock.version}</version> |
| 154 | + <type>jar</type> |
| 155 | + <scope>test</scope> |
| 156 | + </dependency> |
| 157 | + |
| 158 | + <dependency> |
| 159 | + <groupId>org.powermock</groupId> |
| 160 | + <artifactId>powermock-api-mockito2</artifactId> |
| 161 | + <version>${powermock.version}</version> |
| 162 | + <type>jar</type> |
| 163 | + <scope>test</scope> |
| 164 | + <exclusions> |
| 165 | + <exclusion> |
| 166 | + <groupId>org.mockito</groupId> |
| 167 | + <artifactId>mockito-core</artifactId> |
| 168 | + </exclusion> |
| 169 | + </exclusions> |
| 170 | + </dependency> |
| 171 | + |
| 172 | + |
| 173 | + <dependency> |
| 174 | + <groupId>org.yaml</groupId> |
| 175 | + <artifactId>snakeyaml</artifactId> |
| 176 | + <version>2.2</version> |
82 | 177 | <scope>test</scope>
|
83 | 178 | </dependency>
|
84 | 179 |
|
|
90 | 185 | </dependency>
|
91 | 186 |
|
92 | 187 | <dependency>
|
93 |
| - <groupId>ch.qos.logback</groupId> |
94 |
| - <artifactId>logback-classic</artifactId> |
95 |
| - <version>1.5.0</version> |
| 188 | + <groupId>org.apache.flink</groupId> |
| 189 | + <artifactId>flink-connector-test-utils</artifactId> |
| 190 | + <version>${flink.version}</version> |
| 191 | + <scope>test</scope> |
96 | 192 | </dependency>
|
97 | 193 |
|
98 | 194 | <dependency>
|
99 |
| - <groupId>junit</groupId> |
100 |
| - <artifactId>junit</artifactId> |
101 |
| - <version>4.13.2</version> |
| 195 | + <groupId>org.apache.flink</groupId> |
| 196 | + <artifactId>flink-runtime</artifactId> |
| 197 | + <version>${flink.version}</version> |
| 198 | + <type>test-jar</type> |
102 | 199 | <scope>test</scope>
|
103 | 200 | </dependency>
|
104 | 201 |
|
| 202 | + <dependency> |
| 203 | + <groupId>org.apache.flink</groupId> |
| 204 | + <artifactId>flink-connector-base</artifactId> |
| 205 | + <version>${flink.version}</version> |
| 206 | + <scope>test</scope> |
| 207 | + <type>test-jar</type> |
| 208 | + </dependency> |
| 209 | + |
| 210 | + <dependency> |
| 211 | + <groupId>org.apache.flink</groupId> |
| 212 | + <artifactId>flink-metrics-jmx</artifactId> |
| 213 | + <version>${flink.version}</version> |
| 214 | + <scope>test</scope> |
| 215 | + </dependency> |
| 216 | + <dependency> |
| 217 | + <groupId>org.testcontainers</groupId> |
| 218 | + <artifactId>junit-jupiter</artifactId> |
| 219 | + <version>1.17.2</version> |
| 220 | + </dependency> |
| 221 | + <dependency> |
| 222 | + <groupId>org.junit.jupiter</groupId> |
| 223 | + <artifactId>junit-jupiter</artifactId> |
| 224 | + <version>5.10.1</version> |
| 225 | + <scope>test</scope> |
| 226 | + </dependency> |
| 227 | + <dependency> |
| 228 | + <groupId>org.junit.jupiter</groupId> |
| 229 | + <artifactId>junit-jupiter-api</artifactId> |
| 230 | + <version>5.10.1</version> |
| 231 | + </dependency> |
| 232 | + |
105 | 233 | </dependencies>
|
106 | 234 |
|
107 | 235 | <build>
|
108 | 236 | <plugins>
|
109 |
| -<!-- <plugin>--> |
110 |
| -<!-- <groupId>org.apache.maven.plugins</groupId>--> |
111 |
| -<!-- <artifactId>maven-assembly-plugin</artifactId>--> |
112 |
| -<!-- <version>3.0.0</version>--> |
113 |
| -<!-- <configuration>--> |
114 |
| -<!-- <descriptors>--> |
115 |
| -<!-- <descriptor>src/main/assembly/assembly-jar.xml</descriptor>--> |
116 |
| -<!-- </descriptors>--> |
117 |
| -<!-- </configuration>--> |
118 |
| -<!-- <executions>--> |
119 |
| -<!-- <execution>--> |
120 |
| -<!-- <id>make-assembly</id>--> |
121 |
| -<!-- <phase>package</phase>--> |
122 |
| -<!-- <goals>--> |
123 |
| -<!-- <goal>single</goal>--> |
124 |
| -<!-- </goals>--> |
125 |
| -<!-- </execution>--> |
126 |
| -<!-- </executions>--> |
127 |
| -<!-- </plugin>--> |
128 | 237 | <plugin>
|
129 | 238 | <groupId>org.apache.maven.plugins</groupId>
|
130 | 239 | <artifactId>maven-assembly-plugin</artifactId>
|
|
0 commit comments