Skip to content
Snippets Groups Projects
Commit f0624d97 authored by Felix Reichenbach's avatar Felix Reichenbach
Browse files

OZG-7906 move aggregation manager job into own module

parent f0774609
No related branches found
No related tags found
1 merge request!15Ozg 7906 aggregation manager server
Showing
with 32 additions and 89 deletions
...@@ -35,43 +35,27 @@ ...@@ -35,43 +35,27 @@
<relativePath /> <relativePath />
</parent> </parent>
<groupId>de.ozgcloud.aggregation</groupId> <groupId>de.ozgcloud.aggregation</groupId>
<artifactId>aggregation-manager</artifactId> <artifactId>aggregation-manager-parent</artifactId>
<version>1.3.0-SNAPSHOT</version> <version>1.3.0-SNAPSHOT</version>
<name>OZG-Cloud Aggregation Manager</name> <name>OZG-Cloud Aggregation Manager</name>
<inceptionYear>2024</inceptionYear> <inceptionYear>2024</inceptionYear>
<packaging>pom</packaging>
<modules>
<module>aggregation-manager-job</module>
</modules>
<properties> <properties>
<ozgcloud.api-lib.version>0.18.0</ozgcloud.api-lib.version> <ozgcloud.api-lib.version>0.18.0</ozgcloud.api-lib.version>
<jslt.version>0.1.14</jslt.version> <jslt.version>0.1.14</jslt.version>
<hibernate-validator.version>8.0.2.Final</hibernate-validator.version> <hibernate-validator.version>8.0.2.Final</hibernate-validator.version>
<spring-boot.build-image.imageName>docker.ozg-sh.de/aggregation-manager:build-latest</spring-boot.build-image.imageName>
</properties> </properties>
<dependencyManagment>
<dependencies> <dependencies>
<dependency> <dependency>
<artifactId>ozg-cloud-spring-boot-starter</artifactId> <artifactId>ozg-cloud-spring-boot-starter</artifactId>
<groupId>de.ozgcloud.api-lib</groupId> <groupId>de.ozgcloud.api-lib</groupId>
<version>${ozgcloud.api-lib.version}</version> <version>${ozgcloud.api-lib.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
</dependency>
<dependency> <dependency>
<groupId>com.schibsted.spt.data</groupId> <groupId>com.schibsted.spt.data</groupId>
<artifactId>jslt</artifactId> <artifactId>jslt</artifactId>
...@@ -84,11 +68,6 @@ ...@@ -84,11 +68,6 @@
</dependency> </dependency>
<!-- Test dependencies --> <!-- Test dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency> <dependency>
<artifactId>api-lib-core</artifactId> <artifactId>api-lib-core</artifactId>
<groupId>de.ozgcloud.api-lib</groupId> <groupId>de.ozgcloud.api-lib</groupId>
...@@ -97,41 +76,5 @@ ...@@ -97,41 +76,5 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> </dependencyManagment>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>de.ozgcloud.aggregation.AggregationManagerApplication</mainClass>
<image>
<env>
<BPE_DELIM_JAVA_TOOL_OPTIONS xml:space="preserve"> </BPE_DELIM_JAVA_TOOL_OPTIONS>
<BPE_APPEND_JAVA_TOOL_OPTIONS>-Dfile.encoding=UTF-8</BPE_APPEND_JAVA_TOOL_OPTIONS>
</env>
</image>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project> </project>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment