update module information
This commit is contained in:
parent
37e8cc90aa
commit
d11f292b1b
10 changed files with 18 additions and 19 deletions
|
@ -1,5 +1,5 @@
|
|||
module org.xbib.content.config {
|
||||
exports org.xbib.content.config;
|
||||
requires transitive org.xbib.content.json;
|
||||
requires transitive org.xbib.content.yaml;
|
||||
requires org.xbib.content.json;
|
||||
requires org.xbib.content.yaml;
|
||||
}
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
import org.xbib.content.XContent;
|
||||
import org.xbib.content.SettingsLoader;
|
||||
import org.xbib.content.properties.PropertiesSettingsLoader;
|
||||
|
||||
module org.xbib.content.core {
|
||||
uses org.xbib.content.XContent;
|
||||
uses XContent;
|
||||
uses SettingsLoader;
|
||||
exports org.xbib.content.io;
|
||||
exports org.xbib.content.properties;
|
||||
|
@ -11,6 +12,6 @@ module org.xbib.content.core {
|
|||
exports org.xbib.content.core;
|
||||
requires transitive org.xbib.content;
|
||||
requires transitive org.xbib.datastructures.tiny;
|
||||
requires transitive com.fasterxml.jackson.core;
|
||||
requires com.fasterxml.jackson.core;
|
||||
provides SettingsLoader with PropertiesSettingsLoader;
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import org.xbib.content.XContent;
|
||||
import org.xbib.content.SettingsLoader;
|
||||
|
||||
module org.xbib.content.json {
|
||||
|
@ -7,12 +8,9 @@ module org.xbib.content.json {
|
|||
exports org.xbib.content.json.mergepatch;
|
||||
exports org.xbib.content.json.patch;
|
||||
exports org.xbib.content.json.pointer;
|
||||
requires transitive org.xbib.content.core;
|
||||
requires transitive org.xbib.content.settings;
|
||||
requires transitive com.fasterxml.jackson.core;
|
||||
requires transitive com.fasterxml.jackson.databind;
|
||||
provides org.xbib.content.XContent with
|
||||
org.xbib.content.json.JsonXContent;
|
||||
provides SettingsLoader with
|
||||
org.xbib.content.json.JsonSettingsLoader;
|
||||
requires org.xbib.content.core;
|
||||
requires org.xbib.content.settings;
|
||||
requires com.fasterxml.jackson.databind;
|
||||
provides XContent with org.xbib.content.json.JsonXContent;
|
||||
provides SettingsLoader with org.xbib.content.json.JsonSettingsLoader;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
dependencies {
|
||||
implementation project(':content-core')
|
||||
implementation project(':content-resource')
|
||||
implementation project(':content-xml')
|
||||
implementation project(':content-json')
|
||||
|
|
|
@ -10,8 +10,7 @@ module org.xbib.content.rdf {
|
|||
exports org.xbib.content.rdf.io.turtle;
|
||||
exports org.xbib.content.rdf.io.xml;
|
||||
exports org.xbib.content.rdf.util;
|
||||
requires transitive org.xbib.content.core;
|
||||
requires transitive org.xbib.content.resource;
|
||||
requires transitive org.xbib.content.xml;
|
||||
requires transitive org.xbib.content.json;
|
||||
requires org.xbib.content.resource;
|
||||
requires org.xbib.content.xml;
|
||||
requires org.xbib.content.json;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
module org.xbib.content.settings {
|
||||
exports org.xbib.content.settings;
|
||||
requires org.xbib.content.core;
|
||||
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@ module org.xbib.content.smile {
|
|||
exports org.xbib.content.smile;
|
||||
requires transitive org.xbib.content.core;
|
||||
requires transitive com.fasterxml.jackson.dataformat.smile;
|
||||
requires com.fasterxml.jackson.core;
|
||||
provides org.xbib.content.XContent with
|
||||
org.xbib.content.smile.SmileXContent;
|
||||
}
|
||||
|
|
|
@ -10,5 +10,6 @@ module org.xbib.content.xml {
|
|||
requires transitive org.xbib.content.core;
|
||||
requires transitive org.xbib.content.resource;
|
||||
requires transitive com.fasterxml.jackson.dataformat.xml;
|
||||
requires com.fasterxml.jackson.core;
|
||||
provides XContent with org.xbib.content.xml.XmlXContent;
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@ module org.xbib.content.yaml {
|
|||
requires transitive org.xbib.content.core;
|
||||
requires transitive org.xbib.content.settings;
|
||||
requires transitive com.fasterxml.jackson.dataformat.yaml;
|
||||
requires com.fasterxml.jackson.core;
|
||||
provides XContent with org.xbib.content.yaml.YamlXContent;
|
||||
provides SettingsLoader with org.xbib.content.yaml.YamlSettingsLoader;
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@ version = 3.0.0
|
|||
gradle.wrapper.version = 6.6.1
|
||||
xbib.net.version = 2.1.1
|
||||
xbib-datastructures-tiny.version = 0.1.0
|
||||
jackson.version = 2.11.4
|
||||
jackson.version = 2.12.3
|
||||
woodstox.version = 6.2.6
|
||||
snakeyaml.version = 1.28
|
||||
mockito.version = 3.10.0
|
||||
|
|
Loading…
Reference in a new issue