KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
jdbc-ssh
★ 13
Open GitHub ↗
JDBC driver over SSH tunnel
Download README (.md)
Explore Similar Repositories
bug-reporting-guide
:
A client-friendly guide for bug reporting
SpectrumAnalyzerStrip
:
Spectrum analyzer using a Teensy 3.1 and an APA102 RGB LED strip.
TickDynamic
:
Public Issues repository for the Minecraft mod Tick Dynamic.
programming-fundamentals
:
D-Lab training
email-template-guide
:
Manage, compile and test your nightmarish email newsletter templates.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
jdbc-ssh
?
Download (.md)
# jdbc-ssh JDBC driver over SSH tunnel.  ## Build If you just want to compile the project without running the tests: ``` mvn -DskipTests clean install ``` If you want to run the tests (Derby and H2 in server mode): ``` mvn -Djdbc.ssh.username="xxx" -Djdbc.ssh.password="xxx" clean install ``` NOTE: If your SSH server is not running on the default port 22 and/or localhost then you can change those parameters: ``` mvn -Djdbc.ssh.username="xxx" -Djdbc.ssh.password="xxx" -Djdbc.ssh.host="192.168.0.1" -Djdbc.ssh.port="2222" clean install ``` At the moment a locally running SSH server is needed for the tests. The embedded SSH server in the unit tests is not yet ready (authentication works, but port forwarding fails at the moment). ## Maven dependencies You can find the latest releases here: [  ](https://bintray.com/cheetah/monkeysintown/jdbc-ssh/_latestVersion) ... or setup your Maven dependencies: ```xml <dependency> <groupId>com.github.monkeysintown</groupId> <artifactId>jdbc-ssh</artifactId> <version>1.0.9</version> </dependency> ``` ... and configure Bintray's JCenter repository in your pom.xml: ```xml ... <repositories> <repository> <snapshots> <enabled>false</enabled> </snapshots> <id>central</id> <name>bintray</name> <url>http://jcenter.bintray.com</url> </repository> </repositories> ... ``` Get automatic notifications about new releases here: [  ](https://bintray.com/cheetah/monkeysintown/jdbc-ssh/view?source=watch)