EyeGW_AsdeRecv/pom.xml

132 lines
4.4 KiB
XML
Raw Normal View History

2024-02-11 13:17:03 +00:00
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.8</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>kr.gmtc.gw</groupId>
<artifactId>asderecv</artifactId>
<version>0.0.1-SNAPSHOT</version>
2024-06-05 09:05:12 +00:00
<name>EyeAPN_AsdeRecv</name>
2024-02-11 13:17:03 +00:00
<description>Demo project for Spring Boot</description>
<repositories>
<repository>
<id>local-repository</id>
<name>local-repository</name>
<url>file:${project.basedir}/lib</url>
</repository>
</repositories>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
2024-04-27 08:07:46 +00:00
<dependency>
2024-02-11 13:17:03 +00:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
2024-04-27 08:07:46 +00:00
</dependency>
2024-02-11 13:17:03 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
2024-04-27 08:07:46 +00:00
</dependency>
<dependency>
<groupId>org.springframework.kafka</groupId>
<artifactId>spring-kafka</artifactId>
2024-02-11 13:17:03 +00:00
</dependency>
<!-- 서버간 상태 체크 -->
<dependency>
<groupId>kr.gmt.so</groupId>
<artifactId>state-spring-boot-starter</artifactId>
2024-04-27 08:07:46 +00:00
<version>1.0.5</version>
2024-02-11 13:17:03 +00:00
<scope>system</scope>
2024-04-27 08:07:46 +00:00
<systemPath>${basedir}/lib/state-spring-boot-starter-1.0.5.jar</systemPath>
2024-02-11 13:17:03 +00:00
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
<scope>provided</scope>
</dependency>
<!-- IPWorks -->
<dependency>
<groupId>ipworks.local</groupId>
<artifactId>ipworks-local-1.0.0</artifactId>
<scope>system</scope>
<version>1.0.0</version>
2024-04-27 08:07:46 +00:00
<systemPath>${basedir}/lib/ipworks-local-1.0.0.jar</systemPath>
2024-02-11 13:17:03 +00:00
</dependency>
<!-- data format -->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
</dependencies>
<build>
2024-06-05 09:05:12 +00:00
<finalName>${project.name}</finalName>
2024-02-11 13:17:03 +00:00
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
2024-06-05 09:05:12 +00:00
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<delete file="export/${project.name}.jar"/>
<delete file="export/cfg/application.yml"/>
<delete file="export/cfg/logback-spring.xml"/>
<copy file="target/${project.name}.jar" tofile="export/${project.name}.jar"/>
<copy file="src/main/resources/application.yml" tofile="export/cfg/application.yml" />
<copy file="src/main/resources/logback-spring.xml" tofile="export/cfg/logback-spring.xml" />
<copy file="cfg/udpsocket.xml" tofile="export/cfg/udpsocket.xml" />
<copy file="script/run.sh" tofile="export/run.sh" />
<copy file="script/start.sh" tofile="export/start.sh" />
<copy file="script/stop.sh" tofile="export/stop.sh" />
<copy file="script/tail.sh" tofile="export/tail.sh" />
</target>
</configuration>
</execution>
</executions>
</plugin>
2024-02-11 13:17:03 +00:00
</plugins>
</build>
</project>