From 1e3e884636ac97418ccaa89815add72b24d0b46e Mon Sep 17 00:00:00 2001 From: Maximilian Brodhun <brodhun@sub.uni-goettingen.de> Date: Fri, 13 Sep 2019 15:56:49 +0200 Subject: [PATCH] Version to 3.2.0-SNAPSHOT --- Jenkinsfile | 6 +++--- .../test/java/info/textgrid/middleware/OaiPmhTest.java | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 83a642e9..605b12f4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,9 +16,9 @@ node { def pVersion = pom.parent.version def snapshot = pVersion.contains("SNAPSHOT") - //if (snapshot) { - // doDebSnapshot(pName, 'oaipmh-webapp/target', pVersion) - // } + if (snapshot) { + doDebSnapshot(pName, 'oaipmh-webapp/target', pVersion) + } //else { // doDebRelease(pName, 'oaipmh-webapp/target', pVersion) //} diff --git a/oaipmh-core/src/test/java/info/textgrid/middleware/OaiPmhTest.java b/oaipmh-core/src/test/java/info/textgrid/middleware/OaiPmhTest.java index 0c104ac4..341b428e 100644 --- a/oaipmh-core/src/test/java/info/textgrid/middleware/OaiPmhTest.java +++ b/oaipmh-core/src/test/java/info/textgrid/middleware/OaiPmhTest.java @@ -482,13 +482,13 @@ public class OaiPmhTest { * @throws ParseException */ @Test - @Ignore + //@Ignore public void testListSets() throws ParseException { - this.setListTextGrid.setFormatField("format"); - this.setListTextGrid.setFormatToFilter(TextGridMimetypes.EDITION); - this.setListTextGrid.setIdentifierField("textgridUri"); - this.setListTextGrid.setRepositoryObjectURIPrefix("textgrid:"); + OaiPmhTest.setListTextGrid.setFormatField("format"); + OaiPmhTest.setListTextGrid.setFormatToFilter(TextGridMimetypes.EDITION); + OaiPmhTest.setListTextGrid.setIdentifierField("textgridUri"); + OaiPmhTest.setListTextGrid.setRepositoryObjectURIPrefix("textgrid:"); JAXBElement<OAIPMHType> r = this.request.getRequest("ListSets", "", "", "", "", "", ""); JAXB.marshal(r, System.out); -- GitLab