do not use config any more

This commit is contained in:
Jörg Prante 2024-03-25 17:10:12 +01:00
parent 7983abf23a
commit f2d5f57116
9 changed files with 18 additions and 15 deletions

View file

@ -3,7 +3,6 @@ module org.xbib.net.http.j2html {
requires org.xbib.net;
requires org.xbib.net.http;
requires org.xbib.net.http.server;
requires org.xbib.config;
requires org.xbib.j2html;
requires java.logging;
}

View file

@ -1,8 +1,8 @@
module org.xbib.net.http.server.application.config {
uses org.xbib.config.ConfigLogger;
exports org.xbib.net.http.server.application.config;
requires java.logging;
requires org.xbib.net;
requires org.xbib.net.http.server;
requires org.xbib.config;
requires java.logging;
exports org.xbib.net.http.server.application.config;
uses org.xbib.config.ConfigLogger;
}

View file

@ -2,4 +2,5 @@ dependencies {
api project(':net-http-server')
api libs.datastructures.json.tiny
api libs.jdbc.query
implementation libs.settings.api
}

View file

@ -1,11 +1,11 @@
module org.xbib.net.http.server.application.database {
requires java.logging;
requires java.sql;
requires org.xbib.net;
requires org.xbib.net.http;
requires org.xbib.net.http.server;
requires org.xbib.config;
requires org.xbib.datastructures.tiny;
requires org.xbib.settings.api;
requires org.xbib.jdbc.query;
requires org.xbib.jdbc.connection.pool;
requires org.xbib.datastructures.tiny;
requires java.logging;
requires java.sql;
}

View file

@ -1,3 +1,4 @@
dependencies {
api project(':net-http-server')
implementation libs.settings.api
}

View file

@ -1,8 +1,8 @@
dependencies {
api project(':net-http')
api libs.config
implementation libs.datastructures.tiny
implementation libs.datastructures.json.tiny
implementation libs.settings.api
}
def moduleName = 'org.xbib.net.http.server.test'

View file

@ -1,6 +1,7 @@
dependencies {
api project(':net-http-server')
api libs.groovy.templates
implementation libs.settings.api
}
def moduleName = 'org.xbib.net.http.template.groovy.test'

View file

@ -1,10 +1,10 @@
module org.xbib.net.http.template.groovy {
exports org.xbib.net.http.template.groovy;
requires java.logging;
requires org.xbib.net;
requires org.xbib.net.http;
requires org.xbib.net.http.server;
requires org.xbib.config;
requires org.xbib.settings.api;
requires org.apache.groovy;
requires org.apache.groovy.templates;
requires java.logging;
exports org.xbib.net.http.template.groovy;
}

View file

@ -30,11 +30,12 @@ dependencyResolutionManagement {
library('datastructures-tiny', 'org.xbib', 'datastructures-tiny').versionRef('datastructures')
library('datastructures-json-tiny', 'org.xbib', 'datastructures-json-tiny').versionRef('datastructures')
library('datastructures-yaml-tiny', 'org.xbib', 'datastructures-yaml-tiny').versionRef('datastructures')
library('config', 'org.xbib', 'config').versionRef('datastructures')
library('settings-api', 'org.xbib', 'settings-api').versionRef('datastructures')
library('settings-datastructures-json', 'org.xbib', 'settings-datastructures-json').versionRef('datastructures')
library('settings-datastructures-yaml', 'org.xbib', 'settings-datastructures-yaml').versionRef('datastructures')
library('jdbc-query', 'org.xbib', 'jdbc-query').version('2.0.2')
library('jdbc-connection-pool', 'org.xbib', 'jdbc-connection-pool').version('2.0.2')
library('config', 'org.xbib', 'config').versionRef('datastructures')
library('jdbc-query', 'org.xbib', 'jdbc-query').version('2.0.3')
library('jdbc-connection-pool', 'org.xbib', 'jdbc-connection-pool').version('2.0.3')
}
testLibs {
version('junit', '5.10.2')