Skip to content

Commit 09006f1

Browse files
committed
fix test
1 parent 462c3b1 commit 09006f1

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

bin/zeppelin-daemon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ if [[ -d "${ZEPPELIN_HOME}/zeppelin-server/target/classes" ]]; then
6868
fi
6969

7070
# Add jdbc connector jar
71-
# ZEPPELIN_CLASSPATH+=":${ZEPPELIN_HOME}/jdbc/jdbc/connector jar"
71+
# ZEPPELIN_CLASSPATH+=":${ZEPPELIN_HOME}/jdbc connector jar"
7272

7373
addJarInDir "${ZEPPELIN_HOME}"
7474
addJarInDir "${ZEPPELIN_HOME}/lib"

jdbc/pom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,24 @@
3333
<name>Zeppelin: JDBC interpreter</name>
3434
<url>http://www.apache.org</url>
3535

36+
<properties>
37+
<postgresql.version>9.4-1201-jdbc41</postgresql.version>
38+
</properties>
39+
3640
<dependencies>
3741
<dependency>
3842
<groupId>org.apache.zeppelin</groupId>
3943
<artifactId>zeppelin-interpreter</artifactId>
4044
<version>${project.version}</version>
4145
<scope>provided</scope>
4246
</dependency>
43-
47+
48+
<dependency>
49+
<groupId>org.postgresql</groupId>
50+
<artifactId>postgresql</artifactId>
51+
<version>${postgresql.version}</version>
52+
</dependency>
53+
4454
<dependency>
4555
<groupId>org.slf4j</groupId>
4656
<artifactId>slf4j-api</artifactId>

0 commit comments

Comments
 (0)