Skip to content

Commit

Permalink
Setting version
Browse files Browse the repository at this point in the history
  • Loading branch information
hsilva-keep committed May 25, 2017
1 parent e34abaf commit dff6f1a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.roda</groupId>
<artifactId>rodain</artifactId>
<version>2.1.0-beta.1</version>
<version>2.1.0-beta.2</version>

<prerequisites>
<maven>3.0</maven>
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/roda/rodain/core/Controller.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ public static boolean validateSchema(Path fileToValidate, InputStream schemaInpu
}

public static boolean validateSchema(String content, InputStream schemaInputStream) throws SAXException {
// LOGGER.info("Validating against schema {}", schemaString);
return ControllerUtils.validateSchema(content, schemaInputStream);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class ResourceResolver implements LSResourceResolver {

@Override
public LSInput resolveResource(String type, String namespaceURI, String publicId, String systemId, String baseURI) {
LOGGER.info("ResourceResolver | type: {}; namespaceURI: {}; publicId: {}; systemId: {}; baseURI: {}", type,
LOGGER.debug("ResourceResolver | type: {}; namespaceURI: {}; publicId: {}; systemId: {}; baseURI: {}", type,
namespaceURI, publicId, systemId, baseURI);
InputStream resourceAsStream = null;
try {
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/properties/config.properties
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ activeSipTypes=EARK,BAGIT
#########################################################
# Metadata templates #
#########################################################
metadata.templates=ead2002,dc,keyvalue,documentation
metadata.templates=ead2002,dc,keyvalue

#########################################################
# Metadata types #
#########################################################
metadata.types=ead2002,dc,keyvalue,documentation
metadata.types=ead2002,dc,keyvalue

#########################################################
# Metadata definition #
Expand Down

0 comments on commit dff6f1a

Please sign in to comment.