Copy the text as usual, then after you've pressed :
you can type ctrl-R "
to paste it there.
Start typing /home
and the ctrl-x ctrl-f
and it'll autocomplete it for you.
ServerAliveInterval 60
in your .ssh/config
means the client will send packets to the server every 60 seconds to ensure the connection stays open.
This will download all the dependency jars (and in turn their dependencies too) into the current directory. You need to blank settings.gradle
file in the same directory. It works with gradle 7.
apply plugin: 'application'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.xerial:sqlite-jdbc:3.40.0.0'
}
task copyToLib(type: Copy) {
into "."
from configurations.runtimeClasspath
}
build.dependsOn(copyToLib)
Then run gradle build
.