From 4233ea543770dafa5c0483489935050f0ba5e913 Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Thu, 19 Dec 2024 20:06:10 +0100 Subject: [PATCH] OZG-7324 add inceptionYear; remove plugin specific configuration --- pom.xml | 25 ++----------------------- token-checker-interface/pom.xml | 4 +++- token-checker-server/pom.xml | 26 ++------------------------ 3 files changed, 7 insertions(+), 48 deletions(-) diff --git a/pom.xml b/pom.xml index b388cd9..7748a5c 100644 --- a/pom.xml +++ b/pom.xml @@ -28,6 +28,8 @@ <name>OZG-Cloud Token Checker</name> <packaging>pom</packaging> + + <inceptionYear>2024</inceptionYear> <modules> <module>token-checker-interface</module> @@ -40,29 +42,6 @@ <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> - <version>4.1</version> - <configuration> - <mapping> - <config>SCRIPT_STYLE</config> - </mapping> - <licenseSets> - <licenseSet> - <header>license/eupl_v1_2_de/header.txt</header> - <excludes> - <exclude>**/README</exclude> - <exclude>src/test/resources/**</exclude> - <exclude>src/main/resources/**</exclude> - </excludes> - </licenseSet> - </licenseSets> - </configuration> - <dependencies> - <dependency> - <groupId>de.ozgcloud.common</groupId> - <artifactId>ozgcloud-common-license</artifactId> - <version>${ozgcloud.license.version}</version> - </dependency> - </dependencies> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> diff --git a/token-checker-interface/pom.xml b/token-checker-interface/pom.xml index f897aa0..16a8d7b 100644 --- a/token-checker-interface/pom.xml +++ b/token-checker-interface/pom.xml @@ -37,6 +37,8 @@ <name>OZG-Cloud Token Checker Interface</name> <description>gRPC Api for Token Checker</description> + <inceptionYear>2024</inceptionYear> + <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> @@ -164,4 +166,4 @@ <url>https://nexus.ozg-sh.de/repository/ozg-snapshots/</url> </snapshotRepository> </distributionManagement> -</project> \ No newline at end of file +</project> diff --git a/token-checker-server/pom.xml b/token-checker-server/pom.xml index 14ac7a6..f3add68 100644 --- a/token-checker-server/pom.xml +++ b/token-checker-server/pom.xml @@ -36,6 +36,8 @@ <name>OZG-Cloud Token Checker Server</name> <description>Server Implementierung of the Token Checker</description> + + <inceptionYear>2024</inceptionYear> <properties> <java.version>21</java.version> @@ -207,30 +209,6 @@ <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> - <configuration> - <mapping> - <config>SCRIPT_STYLE</config> - <ftlh>FTL</ftlh> - </mapping> - <licenseSets> - <licenseSet> - <header>license/eupl_v1_2_de/header.txt</header> - <excludes> - <exclude>**/README</exclude> - <exclude>src/test/resources/**</exclude> - <exclude>src/main/resources/*.yml</exclude> - <exclude>src/main/resources/*.txt</exclude> - </excludes> - </licenseSet> - </licenseSets> - </configuration> - <dependencies> - <dependency> - <groupId>de.ozgcloud.common</groupId> - <artifactId>ozgcloud-common-license</artifactId> - <version>${ozgcloud.license.version}</version> - </dependency> - </dependencies> </plugin> </plugins> </build> -- GitLab