commit ae2a31b369db7678a4f01ffef67af323c35d1e7a
parent 5ac32c8b645d52c59f9be7ef29332aa228d26645
Author: MS <ms@taler.net>
Date: Mon, 30 Oct 2023 15:22:31 +0100
nexus: remove unnecessary dependencies
Diffstat:
2 files changed, 2 insertions(+), 14 deletions(-)
diff --git a/nexus/build.gradle b/nexus/build.gradle
@@ -61,20 +61,12 @@ dependencies {
// Command line parsing
implementation "com.github.ajalt.clikt:clikt:4.2.1"
-
- // Database connection driver
- implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.36.0.1'
- // implementation 'org.postgresql:postgresql:42.2.23.jre7'
+ // Database
implementation 'org.postgresql:postgresql:42.6.0'
implementation 'com.zaxxer:HikariCP:5.0.1'
-
- // Ktor, an HTTP client and server library (no need for nexus-setup)
- implementation "io.ktor:ktor-server-core:$ktor_version"
- implementation "io.ktor:ktor-server-content-negotiation:$ktor_version"
- implementation "io.ktor:ktor-server-status-pages:$ktor_version"
+ // Ktor client library
implementation "io.ktor:ktor-client-apache:$ktor_version"
implementation "io.ktor:ktor-client-auth:$ktor_version"
- implementation "io.ktor:ktor-server-netty:$ktor_version"
// Brings the call-logging library too.
implementation "io.ktor:ktor-server-test-host:$ktor_version"
diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/EbicsSetup.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/EbicsSetup.kt
@@ -319,10 +319,6 @@ class EbicsSetup: CliktCommand("Set up the EBICS subscriber") {
private val generateRegistrationPdf by option(
help = "generates the PDF with the client public keys to send to the bank"
).flag(default = false)
- private val showAssociatedAccounts by option(
- help = "shows which bank accounts belong to the EBICS subscriber"
- ).flag(default = false)
-
/**
* This function collects the main steps of setting up an EBICS access.
*/