Files
asset-management.sayantan.p…/backend/it-asset-management-server/pom.xml
2026-06-10 12:25:52 +05:30

106 lines
3.7 KiB
XML

<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.ikon</groupId>
<artifactId>it-asset-management</artifactId>
<version>1.0.0</version>
</parent>
<groupId>com.ikon</groupId>
<artifactId>it-asset-management-server</artifactId>
<dependencies>
<dependency>
<groupId>com.ikon</groupId>
<artifactId>ikon-sdk</artifactId>
<version>${ikon.sdk.version}</version>
</dependency>
<dependency>
<groupId>com.ikon</groupId>
<artifactId>it-asset-management-client</artifactId>
<version>${it-asset-management.version}</version>
</dependency>
<!-- Comment out if using process management -->
<!-- <dependency>
<groupId>com.ikon</groupId>
<artifactId>ikon-processmanagement</artifactId>
<version>${ikon.sdk.version}</version>
</dependency> -->
<!-- Comment out if using job script -->
<!-- <dependency>
<groupId>com.ikon</groupId>
<artifactId>ikon-job-executor</artifactId>
<version>${ikon.sdk.version}</version>
</dependency> -->
<dependency>
<groupId>org.modelmapper</groupId>
<artifactId>modelmapper</artifactId>
<version>3.2.2</version>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
<!-- Attach Javadoc JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>