<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.opengroup.osdu.unit-service</groupId> <artifactId>unit-service</artifactId> <version>0.27.0-SNAPSHOT</version> <relativePath>../../../pom.xml</relativePath> </parent> <packaging>jar</packaging> <artifactId>unit-aks</artifactId> <version>0.27.0-SNAPSHOT</version> <name>unit-aks</name> <description>Unit service Azure Kubernetes Deployment</description> <properties> <app.version>1</app.version> <app.id>unit-aks</app.id> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <lucene.version>8.0.0</lucene.version> <resteasy.version>3.6.2.Final</resteasy.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.showDeprecation>true</maven.compiler.showDeprecation> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <core-lib-azure-spring6.version>0.27.0-rc3</core-lib-azure-spring6.version> </properties> <dependencies> <dependency> <groupId>org.opengroup.osdu.unit-service</groupId> <artifactId>unit-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.opengroup.osdu</groupId> <artifactId>core-lib-azure-spring6</artifactId> <version>${core-lib-azure-spring6.version}</version> </dependency> <!-- Compile/runtime dependencies --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.26</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.azure.spring</groupId> <artifactId>spring-cloud-azure-starter-active-directory</artifactId> <version>5.13.0</version> </dependency> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-core</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>3.2.2</version> <executions> <execution> <goals> <goal>repackage</goal> </goals> <configuration> <classifier>spring-boot</classifier> <mainClass> org.opengroup.osdu.unitservice.UomAksApplication </mainClass> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.1</version> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> </configuration> </plugin> </plugins> </build> </project>