diff --git a/oaipmh-core/pom.xml b/oaipmh-core/pom.xml
index 88655e8b3d639d6b4aedcc6374725663684864ce..1eee5520842cdf8475c270d94fbed596a3bc23f7 100644
--- a/oaipmh-core/pom.xml
+++ b/oaipmh-core/pom.xml
@@ -4,11 +4,11 @@
 	<parent>
 		<artifactId>oaipmh</artifactId>
 		<groupId>info.textgrid.middleware</groupId>
-		<version>1.3.8-SNAPSHOT</version>
+		<version>1.3.9-SNAPSHOT</version>
 	</parent>
 	<groupId>info.textgrid.middleware</groupId>
 	<artifactId>oaipmh-core</artifactId>
-	<version>1.3.8-SNAPSHOT</version>
+	<version>1.3.9-SNAPSHOT</version>
 	<packaging>jar</packaging>
 	<name>TextGrid :: TG-OAI-PMH :: Core</name>
 	<url>http://maven.apache.org</url>
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 df796fc1816206b2f39d9ab90d8ba147700d0bd7..b8667bbe8614c15056b53fc0fcb578ada39ef12d 100644
--- a/oaipmh-core/src/test/java/info/textgrid/middleware/OaiPmhTest.java
+++ b/oaipmh-core/src/test/java/info/textgrid/middleware/OaiPmhTest.java
@@ -25,9 +25,9 @@ public class OaiPmhTest {
 	private RecordDeliverer 	record = new RecordDeliverer(oaiEsClient, TGConstants.TGFields, TGConstants.TGWorkFields, true, false);
 	private RecordListDeliverer recordList = new RecordListDeliverer(oaiEsClient, TGConstants.TGFields, TGConstants.TGWorkFields, true, false);
 	
-	private OAIPMHImpl			testRequest						= new OAIPMHImpl(oaiEsClient, record);
-	private OAIPMHImpl			repIdentificationTestRequest	= new OAIPMHImpl(oaiEsClient, rep);
-	private OAIPMHImpl			recordListRequest				= new OAIPMHImpl(oaiEsClient, recordList);
+	//private OAIPMHImpl			testRequest						= new OAIPMHImpl(oaiEsClient, record);
+	//private OAIPMHImpl			repIdentificationTestRequest	= new OAIPMHImpl(oaiEsClient, rep);
+	//private OAIPMHImpl			recordListRequest				= new OAIPMHImpl(oaiEsClient, recordList);
 	
 	private OAIPMHImpl			request				= new OAIPMHImpl(oaiEsClient, rep, record, recordList);
 
@@ -83,7 +83,7 @@ public class OaiPmhTest {
 	public void testGetRequestIdentify() throws ParseException {
 
 		System.out.println("Test for the verb \"Identify\" with succesfull response");
-		JAXBElement<OAIPMHType> r = repIdentificationTestRequest.getRequest("Identify", "", "",
+		JAXBElement<OAIPMHType> r = request.getRequest("Identify", "", "",
 				"", "", "", "");
 		JAXB.marshal(r, System.out);
 		System.out.println("-----------------------------------\n");
@@ -92,7 +92,7 @@ public class OaiPmhTest {
 	@Test
 	//@Ignore
 	public void testGetRequestIdentifyVerbError() throws ParseException {
-		JAXBElement<OAIPMHType> t = testRequest.getRequest("Identify", "", "a",
+		JAXBElement<OAIPMHType> t = request.getRequest("Identify", "", "a",
 				"", "", "", "");
 		JAXB.marshal(t, System.out);
 		System.out.println("-----------------------------------\n");
@@ -103,7 +103,7 @@ public class OaiPmhTest {
 	public void testGetRequestIdentifyArgumentError() throws ParseException {
 		System.out
 				.println("Test for the verb \"Identify\" with error response");
-		JAXBElement<OAIPMHType> z = testRequest.getRequest("Identify", "a", "",
+		JAXBElement<OAIPMHType> z = request.getRequest("Identify", "a", "",
 				"", "", "a", "");
 		JAXB.marshal(z, System.out);
 		System.out.println("-----------------------------------\n");
@@ -126,7 +126,7 @@ public class OaiPmhTest {
 	public void testGetRequestGetRecordError2() throws ParseException {
 		System.out
 				.println("Test for the verb \"GetRecord\" with succesfull response");
-		JAXBElement<OAIPMHType> p = testRequest.getRequest("GetRecord",
+		JAXBElement<OAIPMHType> p = request.getRequest("GetRecord",
 				"wr71.0", "oai_dc", "", "", "", "");
 		JAXB.marshal(p, System.out);
 		System.out.println("-----------------------------------\n");
@@ -137,7 +137,7 @@ public class OaiPmhTest {
 	@Ignore 
 	public void testGetRequestGetRecordError3() throws	ParseException{
 	System.out.println("Test for the verb \"GetRecord\" with succesfull response"
-	); JAXBElement<OAIPMHType> p = testRequest.getRequest("GetRecord", "",
+	); JAXBElement<OAIPMHType> p = request.getRequest("GetRecord", "",
 	 "", "", "", "", ""); JAXB.marshal(p, System.out);
 	 System.out.println("-----------------------------------\n");
 	 
@@ -148,7 +148,7 @@ public class OaiPmhTest {
 	@Ignore
 	public void testListIdentifierSets() throws ParseException {
 		System.out.println("Test for the verb \"ListIdentifiers\" with succesfull response");
-		JAXBElement<OAIPMHType> p = testRequest.getRequest("ListIdentifiers",
+		JAXBElement<OAIPMHType> p = request.getRequest("ListIdentifiers",
 				"", "oai_dc", "project.value:St. Matthias Test 07", "", "", "");
 		JAXB.marshal(p, System.out);
 		System.out.println("-----------------------------------\n");
@@ -159,7 +159,7 @@ public class OaiPmhTest {
 	@Ignore
 	public void testListRecordSets() throws ParseException {
 		System.out.println("Test for the verb \"ListRecord\" with sets with succesfull response");
-		JAXBElement<OAIPMHType> p = recordListRequest.getRequest("ListRecords",
+		JAXBElement<OAIPMHType> p = request.getRequest("ListRecords",
 				"", "oai_dc", "project.value:Digitale Bibliothek", "", "", "");
 		JAXB.marshal(p, System.out);
 		System.out.println("-----------------------------------\n");
@@ -169,7 +169,7 @@ public class OaiPmhTest {
 	@Test
 	@Ignore 
 	public void testListRecords() throws ParseException{
-		JAXBElement<OAIPMHType> r = testRequest.getRequest("ListRecords", "",
+		JAXBElement<OAIPMHType> r = request.getRequest("ListRecords", "",
 				"oai_dc", "", "2011-02-06T20:48:39", "", ""); JAXB.marshal(r,
 		System.out); System.out.println("-----------------------------------\n");
 	}
@@ -177,7 +177,7 @@ public class OaiPmhTest {
 	@Test
 	@Ignore 
 	public void testListMetadataFormats() throws ParseException{
-		JAXBElement<OAIPMHType> r = testRequest.getRequest("ListMetadataFormats",
+		JAXBElement<OAIPMHType> r = request.getRequest("ListMetadataFormats",
 				"wr67.0", "", "", "", "", ""); JAXB.marshal(r, System.out);
 		System.out.println("-----------------------------------\n"); 
 	}
@@ -186,7 +186,7 @@ public class OaiPmhTest {
 	@Ignore
 	public void testListSets() throws ParseException {
 
-		JAXBElement<OAIPMHType> r = testRequest.getRequest("ListSets", "", "",
+		JAXBElement<OAIPMHType> r = request.getRequest("ListSets", "", "",
 				"", "", "", "");
 		JAXB.marshal(r, System.out);
 		System.out.println("-----------------------------------\n");
@@ -196,7 +196,7 @@ public class OaiPmhTest {
 	@Ignore 
 	public void testListIdentifiers() throws ParseException{
 	 
-		JAXBElement<OAIPMHType> r = testRequest.getRequest("ListIdentifiers", "",
+		JAXBElement<OAIPMHType> r = request.getRequest("ListIdentifiers", "",
 				"oai_dc", "", "", "", ""); JAXB.marshal(r, System.out);
 				System.out.println("-----------------------------------\n"); 
 	}
diff --git a/oaipmh-webapp/pom.xml b/oaipmh-webapp/pom.xml
index 675fd8b1f5390983336447a2a56ce6ba5fe480b1..32e139608d867026c630ec5a216da220267f515d 100644
--- a/oaipmh-webapp/pom.xml
+++ b/oaipmh-webapp/pom.xml
@@ -4,12 +4,12 @@
 	<parent>
 		<artifactId>oaipmh</artifactId>
 		<groupId>info.textgrid.middleware</groupId>
-		<version>1.3.8-SNAPSHOT</version>
+		<version>1.3.9-SNAPSHOT</version>
 	</parent>
 	<groupId>info.textgrid.middleware</groupId>
 	<artifactId>oaipmh-webapp</artifactId>
 	<packaging>war</packaging>
-	<version>1.3.8-SNAPSHOT</version>
+	<version>1.3.9-SNAPSHOT</version>
 	<name>TextGrid :: OAI-PMH :: Webapp</name>
 	<url>http://maven.apache.org</url>
 	<profiles>
diff --git a/pom.xml b/pom.xml
index 0facc2c624ea88fd64d35b4a04944ec1c261b580..3792c0ab0ddd56e4030292af09c1674c9437e278 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>info.textgrid.middleware</groupId>
   <artifactId>oaipmh</artifactId>
-  <version>1.3.8-SNAPSHOT</version>
+  <version>1.3.9-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>TextGrid :: TG-OAI-PMH :: Parent</name>
   <properties>