do not use config any more
This commit is contained in:
parent
7983abf23a
commit
f2d5f57116
9 changed files with 18 additions and 15 deletions
|
@ -3,7 +3,6 @@ module org.xbib.net.http.j2html {
|
||||||
requires org.xbib.net;
|
requires org.xbib.net;
|
||||||
requires org.xbib.net.http;
|
requires org.xbib.net.http;
|
||||||
requires org.xbib.net.http.server;
|
requires org.xbib.net.http.server;
|
||||||
requires org.xbib.config;
|
|
||||||
requires org.xbib.j2html;
|
requires org.xbib.j2html;
|
||||||
requires java.logging;
|
requires java.logging;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
module org.xbib.net.http.server.application.config {
|
module org.xbib.net.http.server.application.config {
|
||||||
uses org.xbib.config.ConfigLogger;
|
requires java.logging;
|
||||||
exports org.xbib.net.http.server.application.config;
|
|
||||||
requires org.xbib.net;
|
requires org.xbib.net;
|
||||||
requires org.xbib.net.http.server;
|
requires org.xbib.net.http.server;
|
||||||
requires org.xbib.config;
|
requires org.xbib.config;
|
||||||
requires java.logging;
|
exports org.xbib.net.http.server.application.config;
|
||||||
|
uses org.xbib.config.ConfigLogger;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,4 +2,5 @@ dependencies {
|
||||||
api project(':net-http-server')
|
api project(':net-http-server')
|
||||||
api libs.datastructures.json.tiny
|
api libs.datastructures.json.tiny
|
||||||
api libs.jdbc.query
|
api libs.jdbc.query
|
||||||
|
implementation libs.settings.api
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
module org.xbib.net.http.server.application.database {
|
module org.xbib.net.http.server.application.database {
|
||||||
|
requires java.logging;
|
||||||
|
requires java.sql;
|
||||||
requires org.xbib.net;
|
requires org.xbib.net;
|
||||||
requires org.xbib.net.http;
|
requires org.xbib.net.http;
|
||||||
requires org.xbib.net.http.server;
|
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.query;
|
||||||
requires org.xbib.jdbc.connection.pool;
|
requires org.xbib.jdbc.connection.pool;
|
||||||
requires org.xbib.datastructures.tiny;
|
|
||||||
requires java.logging;
|
|
||||||
requires java.sql;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':net-http-server')
|
api project(':net-http-server')
|
||||||
|
implementation libs.settings.api
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':net-http')
|
api project(':net-http')
|
||||||
api libs.config
|
|
||||||
implementation libs.datastructures.tiny
|
implementation libs.datastructures.tiny
|
||||||
implementation libs.datastructures.json.tiny
|
implementation libs.datastructures.json.tiny
|
||||||
|
implementation libs.settings.api
|
||||||
}
|
}
|
||||||
|
|
||||||
def moduleName = 'org.xbib.net.http.server.test'
|
def moduleName = 'org.xbib.net.http.server.test'
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':net-http-server')
|
api project(':net-http-server')
|
||||||
api libs.groovy.templates
|
api libs.groovy.templates
|
||||||
|
implementation libs.settings.api
|
||||||
}
|
}
|
||||||
|
|
||||||
def moduleName = 'org.xbib.net.http.template.groovy.test'
|
def moduleName = 'org.xbib.net.http.template.groovy.test'
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
module org.xbib.net.http.template.groovy {
|
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;
|
||||||
requires org.xbib.net.http;
|
requires org.xbib.net.http;
|
||||||
requires org.xbib.net.http.server;
|
requires org.xbib.net.http.server;
|
||||||
requires org.xbib.config;
|
requires org.xbib.settings.api;
|
||||||
requires org.apache.groovy;
|
requires org.apache.groovy;
|
||||||
requires org.apache.groovy.templates;
|
requires org.apache.groovy.templates;
|
||||||
requires java.logging;
|
exports org.xbib.net.http.template.groovy;
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,11 +30,12 @@ dependencyResolutionManagement {
|
||||||
library('datastructures-tiny', 'org.xbib', 'datastructures-tiny').versionRef('datastructures')
|
library('datastructures-tiny', 'org.xbib', 'datastructures-tiny').versionRef('datastructures')
|
||||||
library('datastructures-json-tiny', 'org.xbib', 'datastructures-json-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('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-json', 'org.xbib', 'settings-datastructures-json').versionRef('datastructures')
|
||||||
library('settings-datastructures-yaml', 'org.xbib', 'settings-datastructures-yaml').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('config', 'org.xbib', 'config').versionRef('datastructures')
|
||||||
library('jdbc-connection-pool', 'org.xbib', 'jdbc-connection-pool').version('2.0.2')
|
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 {
|
testLibs {
|
||||||
version('junit', '5.10.2')
|
version('junit', '5.10.2')
|
||||||
|
|
Loading…
Reference in a new issue