42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<artifactId>flink-metadata</artifactId>
|
|
<groupId>net.srt</groupId>
|
|
<version>2.0.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>flink-metadata-oracle</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.srt</groupId>
|
|
<artifactId>flink-metadata-base</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<!--<groupId>com.oracle.database.jdbc</groupId>-->
|
|
<groupId>com.oracle.ojdbc</groupId>
|
|
<artifactId>ojdbc8</artifactId>
|
|
<version>${ojdbc8.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<!--<groupId>cn.easyproject</groupId>-->
|
|
<groupId>com.oracle.ojdbc</groupId>
|
|
<artifactId>orai18n</artifactId>
|
|
<version>${ojdbc8.version}</version>
|
|
<!-- <version>12.1.0.2.0</version>-->
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
|
|
</project>
|