Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion multiapps-common/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@

requires static java.compiler;
requires static org.immutables.value;
requires java.xml;
requires jakarta.xml.bind;
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@ private Messages() {
public static final String CANNOT_CONVERT_JSON_STREAM_TO_LIST = "Error while converting JSON input stream to list: {0}";
public static final String CANNOT_CONVERT_JSON_STRING_TO_LIST = "Error while converting JSON string \"{0}\" to list: {1}";
public static final String CANNOT_PARSE_JSON_STRING_TO_TYPE = "Error while parsing JSON string \"{0}\" to type \"{1}\" ";
public static final String COULD_NOT_CREATE_DOCUMENT_BUILDER_FACTORY = "Could not create document builder factory";
public static final String CANNOT_PARSE_XML_STREAM = "Error while parsing XML input stream";
public static final String COULD_NOT_CREATE_JAXB_UNMARSHALLER = "Could not create JAXB unmarshaller";
public static final String COULD_NOT_CREATE_JAXB_MARSHALLER = "Could not create JAXB marshaller";
public static final String UNABLE_TO_PARSE_SCHEMA = "Could not parse schema at location \"{0}\"";
public static final String UNABLE_TO_UNMARSHAL_OBJECT = "An unexpected error occurred while unmarshalling the XML content";
public static final String UNABLE_TO_MARSHAL_OBJECT = "An unexpected error occurred while marshalling the object";
public static final String ERROR_PARSING_YAML_STREAM = "Error while parsing YAML stream: {0}";
public static final String ERROR_PARSING_YAML_STRING = "Error while parsing YAML string: %n%s%n%s";
public static final String COULD_NOT_PARSE_BOOLEAN_FLAG = "Cannot parse \"{0}\" flag - expected a boolean format.";
Expand Down

This file was deleted.

7 changes: 0 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
<immutables.version>2.12.1</immutables.version>
<jackson.version>3.1.1</jackson.version>
<jackson.datatype.jsr310.version>2.21.2</jackson.datatype.jsr310.version>
<jaxb-runtime.version>4.0.7</jaxb-runtime.version>
<jakarta.xml.bind-api.version>4.0.5</jakarta.xml.bind-api.version>
<apache.compress.version>1.28.0</apache.compress.version>
</properties>
Expand Down Expand Up @@ -238,12 +237,6 @@
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${jakarta.xml.bind-api.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-runtime -->
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${jaxb-runtime.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/tools.jackson.core/jackson-databind -->
<dependency>
<groupId>tools.jackson.core</groupId>
Expand Down
Loading