File tree Expand file tree Collapse file tree 4 files changed +80
-0
lines changed
main/java/com/zhisheng/flink
test/java/com/zhisheng/flink Expand file tree Collapse file tree 4 files changed +80
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <parent >
6
+ <artifactId >flink-learning-cdc</artifactId >
7
+ <groupId >com.zhisheng.flink</groupId >
8
+ <version >1.0-SNAPSHOT</version >
9
+ </parent >
10
+ <modelVersion >4.0.0</modelVersion >
11
+
12
+ <artifactId >flink-oracle-cdc</artifactId >
13
+
14
+ <properties >
15
+ <maven .compiler.source>8</maven .compiler.source>
16
+ <maven .compiler.target>8</maven .compiler.target>
17
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
18
+ </properties >
19
+
20
+
21
+ <dependencies >
22
+ <dependency >
23
+ <groupId >com.ververica</groupId >
24
+ <artifactId >flink-sql-connector-oracle-cdc</artifactId >
25
+ <version >2.3</version >
26
+ </dependency >
27
+ </dependencies >
28
+ </project >
Original file line number Diff line number Diff line change
1
+ package com .zhisheng .flink ;
2
+
3
+ /**
4
+ * Hello world!
5
+ *
6
+ */
7
+ public class App
8
+ {
9
+ public static void main ( String [] args )
10
+ {
11
+ System .out .println ( "Hello World!" );
12
+ }
13
+ }
Original file line number Diff line number Diff line change
1
+ package com .zhisheng .flink ;
2
+
3
+ import junit .framework .Test ;
4
+ import junit .framework .TestCase ;
5
+ import junit .framework .TestSuite ;
6
+
7
+ /**
8
+ * Unit test for simple App.
9
+ */
10
+ public class AppTest
11
+ extends TestCase
12
+ {
13
+ /**
14
+ * Create the test case
15
+ *
16
+ * @param testName name of the test case
17
+ */
18
+ public AppTest ( String testName )
19
+ {
20
+ super ( testName );
21
+ }
22
+
23
+ /**
24
+ * @return the suite of tests being tested
25
+ */
26
+ public static Test suite ()
27
+ {
28
+ return new TestSuite ( AppTest .class );
29
+ }
30
+
31
+ /**
32
+ * Rigourous Test :-)
33
+ */
34
+ public void testApp ()
35
+ {
36
+ assertTrue ( true );
37
+ }
38
+ }
Original file line number Diff line number Diff line change 14
14
<modules >
15
15
<module >flink-mysql-cdc</module >
16
16
<module >flink-postgres-cdc</module >
17
+ <module >flink-oracle-cdc</module >
17
18
</modules >
18
19
19
20
</project >
You can’t perform that action at this time.
0 commit comments