-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
87 lines (78 loc) · 3.18 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>dolphindbreader</artifactId>
<version>1.0.0</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>system</scope>
<version>2.0.7</version>
<systemPath>${basedir}/libs/slf4j-api-2.0.7.jar</systemPath>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit</artifactId>
<scope>system</scope>
<version>4.12</version>
<systemPath>${basedir}/libs/junit-4.12.jar</systemPath>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>core</artifactId>
<scope>system</scope>
<version>1.3</version>
<systemPath>${basedir}/libs/hamcrest-core-1.3.jar</systemPath>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<scope>system</scope>
<version>1.1.46.sec01</version>
<systemPath>${basedir}/libs/fastjson-1.1.46.sec01.jar</systemPath>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>datax-transformer</artifactId>
<scope>system</scope>
<version>0.0.1-SNAPSHOT</version>
<systemPath>${basedir}/libs/datax-transformer-0.0.1-SNAPSHOT.jar</systemPath>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>datax-transformer</artifactId>
<scope>system</scope>
<version>0.0.1-SNAPSHOT</version>
<systemPath>${basedir}/libs/datax-transformer-0.0.1-SNAPSHOT.jar</systemPath>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>datax-core</artifactId>
<scope>system</scope>
<version>0.0.1-SNAPSHOT</version>
<systemPath>${basedir}/libs/datax-core-0.0.1-SNAPSHOT.jar</systemPath>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>datax-common</artifactId>
<scope>system</scope>
<version>0.0.1-SNAPSHOT</version>
<systemPath>${basedir}/libs/datax-common-0.0.1-SNAPSHOT.jar</systemPath>
</dependency>
<dependency>
<groupId>com.dolphindb</groupId>
<artifactId>api-java</artifactId>
<scope>system</scope>
<version>3.00.1.2</version>
<systemPath>${basedir}/libs/dolphindb-javaapi-3.00.1.2-jar-with-dependencies.jar</systemPath>
</dependency>
</dependencies>
</project>