From a24810a53a0124236c488bd8eca146609c620848 Mon Sep 17 00:00:00 2001 From: Isaac Parenteau Date: Tue, 14 Sep 2021 23:17:06 -0500 Subject: [PATCH] Updated libraries --- pom.xml | 72 +++++++++++++------ .../database/config/EightTrackDataSource.java | 11 +-- 2 files changed, 52 insertions(+), 31 deletions(-) diff --git a/pom.xml b/pom.xml index 25b71a5..926abff 100644 --- a/pom.xml +++ b/pom.xml @@ -18,18 +18,18 @@ - 7.0.4 - 8.0.22 - 5.4.22.Final - 5.2.9.RELEASE - 2.3.4.RELEASE - 2.3.4.RELEASE - 2.11.3 - 2.13.3 - 1.7.30 - 3.0.0-M3 - 5.3.2 - 3.0 + 7.15.0 + 8.0.26 + 5.5.7.Final + 5.3.9 + 2.5.4 + 2.5.4 + 2.12.5 + 2.14.1 + 1.7.32 + 3.0.0 + 6.3.1 + 4.1 https://nexus.locusworks.net @@ -93,13 +93,14 @@ license-maven-plugin ${license-maven-plugin.version} - false -
${basedir}/licenses/LICENSE.template
- true - true - - **/*.java - + + +
${project.baseUri}/licenses/LICENSE.template
+ + **/*.java + +
+
net.dv8tion JDA - 4.2.0_209 + 4.3.0_277 com.fasterxml.jackson.core @@ -174,9 +175,34 @@ com.sedmelluq lavaplayer - 1.3.50 + 1.3.77 + + + org.apache.httpcomponents + httpclient + + + org.jsoup + jsoup + + + + + org.apache.httpcomponents + httpclient + 4.5.13 + + + + + org.jsoup + jsoup + 1.14.2 + + + org.flywaydb diff --git a/src/main/java/net/locusworks/discord/eighttrack/database/config/EightTrackDataSource.java b/src/main/java/net/locusworks/discord/eighttrack/database/config/EightTrackDataSource.java index dcff30f..901de90 100644 --- a/src/main/java/net/locusworks/discord/eighttrack/database/config/EightTrackDataSource.java +++ b/src/main/java/net/locusworks/discord/eighttrack/database/config/EightTrackDataSource.java @@ -75,18 +75,13 @@ public class EightTrackDataSource { @Bean public DataSource dataSource() throws Exception { logger.debug("Getting datasource"); - return getDataSource(confService.getDatabaseUsername(), - confService.getDatabasePassword(), - "/eighttrack"); + return getDataSource(confService.getDatabaseUsername(), confService.getDatabasePassword(), "/eighttrack"); } @Bean public DataSource flywayDataSource() throws Exception { - logger.debug("Logging in with flyway for migrations"); - - return getDataSource(confService.getDatabaseRootUsername(), - confService.getDatabaseRootPassword(), - ""); + logger.debug("Logging in with flyway for migrations");; + return getDataSource(confService.getDatabaseRootUsername(), confService.getDatabaseRootPassword(), ""); } private DataSource getDataSource(String user, String passwd, String db) throws Exception {