diff --git a/ozgcloud-common-lib/src/main/java/de/ozgcloud/common/logging/AspectPointcuts.java b/ozgcloud-common-lib/src/main/java/de/ozgcloud/common/logging/AspectPointcuts.java
index 60884b7bd3da1ed36f94cdd5c315a7aef275cd86..aacdc438882026d711d7a4f7ef685970cecfa337 100644
--- a/ozgcloud-common-lib/src/main/java/de/ozgcloud/common/logging/AspectPointcuts.java
+++ b/ozgcloud-common-lib/src/main/java/de/ozgcloud/common/logging/AspectPointcuts.java
@@ -37,7 +37,7 @@ public class AspectPointcuts {
 		// aspect pointcut - no implementation needed
 	}
 
-	@Pointcut("anyPublicMethods() && (anythingInKOP() || anythingInOzgCloud())")
+	@Pointcut("anyPublicMethods() && anythingInOzgCloud()")
 	void anyPublicMethodInOzgCloud() {
 		// aspect pointcut - no implementation needed
 	}
diff --git a/ozgcloud-common-license/readme.md b/ozgcloud-common-license/readme.md
index 54fc614742980f0d0422ebfbc8bb20530de2b824..c471a27f5c0752fa04206b506656f5b7d1902187 100644
--- a/ozgcloud-common-license/readme.md
+++ b/ozgcloud-common-license/readme.md
@@ -1,6 +1,6 @@
-com.mycila# KOP Common license
+com.mycila# OzgCloud Common license
 
-This is a basic Maven-based project that can be used as license provider for all KOP Projects
+This is a basic Maven-based project that can be used as license provider for all OzgCloud Projects
 
 It provides the the header and full text of the german [EUPL Version 1.2 license][license]
 
@@ -12,7 +12,7 @@ It is a library, meant to be included as a dependency on any project which may w
 To use it add
 
 ```xml
-<kop.license.version>1.4.0</kop.license.version>
+<ozgcloud.license.version>1.4.0</ozgcloud.license.version>
 ```
 to the properties section of the pom.xml file.
 
@@ -38,9 +38,9 @@ In the plugins section add
 	</configuration>
 	<dependencies>
         <dependency>
-            <groupId>de.itvsh.kop.common</groupId>
-            <artifactId>kop-common-license</artifactId>
-            <version>${kop.license.version}</version>
+            <groupId>de.ozgcloud.common</groupId>
+            <artifactId>ozgcloud-common-license</artifactId>
+            <version>${ozgcloud.license.version}</version>
         </dependency>
     </dependencies>
 </plugin>
diff --git a/ozgcloud-common-pdf/src/test/java/de/ozgcloud/common/pdf/fop/FopPdfServiceTest.java b/ozgcloud-common-pdf/src/test/java/de/ozgcloud/common/pdf/fop/FopPdfServiceTest.java
index 653299a7353bbb39640ff794c73c0efe6cffcf40..139bc8aa48fbeab98f6a5aeee35b442fc9d037ba 100644
--- a/ozgcloud-common-pdf/src/test/java/de/ozgcloud/common/pdf/fop/FopPdfServiceTest.java
+++ b/ozgcloud-common-pdf/src/test/java/de/ozgcloud/common/pdf/fop/FopPdfServiceTest.java
@@ -98,7 +98,7 @@ class FopPdfServiceTest {
 	@Test
 	@SneakyThrows
 	void shouldRenderToFile() {
-		var tempFile = File.createTempFile("kop_", ".pdf");
+		var tempFile = File.createTempFile("ozgcloud_", ".pdf");
 		tempFile.deleteOnExit();
 		OutputStream out = new FileOutputStream(tempFile);