Skip to content
Snippets Groups Projects
Commit 03525acc authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Removed exclusion of jackson-module-jaxb-annotations in pom.xml: this project...

Removed exclusion of jackson-module-jaxb-annotations in pom.xml: this project doesn't include this dependency (unlike vospace-rest)
parent 3bc5b084
No related branches found
No related tags found
No related merge requests found
Pipeline #1224 passed
......@@ -71,14 +71,6 @@
<groupId>it.oats.inaf</groupId>
<artifactId>vospace-datamodel</artifactId>
<version>1.0-SNAPSHOT</version>
<exclusions>
<!-- Transitive dependency excluded to avoid duplicated dependency issues.
We want to use always the version provided by Spring Boot -->
<exclusion>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-jaxb-annotations</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
......
......@@ -81,15 +81,6 @@ public class PutFileController extends FileController {
}
}
/*
private void storeFile(FileInfo fileInfo, InputStream is, String jobId) throws IOException {
if (fileInfo.getAcceptViews() != null && fileInfo.getAcceptViews().contains("urn:list-of-files")) {
storeListOfFiles(fileInfo, is);
} else {
storeGenericFile(fileInfo, is, jobId);
}
}*/
private void storeListOfFiles(FileInfo fileInfo, InputStream is) throws IOException {
List<String> filePaths = parseListOfFiles(is);
listOfFilesDAO.createList(fileInfo.getVirtualPath(), filePaths);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment