From cf4b9d8018a3ffa8e536644b6f46fd3b08422ba8 Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Fri, 1 Dec 2023 15:13:00 +0100 Subject: [PATCH] OZG-4589 rename kop -> ozgcloud --- .../de/ozgcloud/common/logging/AspectPointcuts.java | 2 +- ozgcloud-common-license/readme.md | 12 ++++++------ .../ozgcloud/common/pdf/fop/FopPdfServiceTest.java | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) 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 60884b7..aacdc43 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 54fc614..c471a27 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 653299a..139bc8a 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); -- GitLab