140 lines
3.9 KiB
XML
140 lines
3.9 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>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>3.1.2</version>
|
||
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
</parent>
|
||
|
<groupId>cn.skcks.jnr.sevenzip</groupId>
|
||
|
<artifactId>Jnr-SevenZip</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>17</maven.compiler.source>
|
||
|
<maven.compiler.target>17</maven.compiler.target>
|
||
|
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
|
||
|
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
|
||
|
<java.version>17</java.version>
|
||
|
<springboot.version>3.1.2</springboot.version>
|
||
|
|
||
|
<!--Java Bean-->
|
||
|
<org.mapstruct.version>1.5.3.Final</org.mapstruct.version>
|
||
|
<lombok.version>1.18.24</lombok.version>
|
||
|
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!--MapStruct-->
|
||
|
<dependency>
|
||
|
<groupId>org.mapstruct</groupId>
|
||
|
<artifactId>mapstruct</artifactId>
|
||
|
<version>${org.mapstruct.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mapstruct</groupId>
|
||
|
<artifactId>mapstruct-processor</artifactId>
|
||
|
<version>${org.mapstruct.version}</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!--lombok-->
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>${lombok.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>${maven-compiler-plugin.version}</version>
|
||
|
<configuration>
|
||
|
<annotationProcessorPaths>
|
||
|
<path>
|
||
|
<groupId>org.mapstruct</groupId>
|
||
|
<artifactId>mapstruct-processor</artifactId>
|
||
|
<version>${org.mapstruct.version}</version>
|
||
|
</path>
|
||
|
|
||
|
<path>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>${lombok.version}</version>
|
||
|
</path>
|
||
|
|
||
|
<path>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok-mapstruct-binding</artifactId>
|
||
|
<version>0.2.0</version>
|
||
|
</path>
|
||
|
|
||
|
<path>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
|
<version>${springboot.version}</version>
|
||
|
</path>
|
||
|
<!-- other annotation processors -->
|
||
|
</annotationProcessorPaths>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-resources-plugin</artifactId>
|
||
|
<version>${maven-resources-plugin.version}</version>
|
||
|
<configuration>
|
||
|
<delimiters>
|
||
|
<delimiter>@</delimiter>
|
||
|
</delimiters>
|
||
|
<useDefaultDelimiters>false</useDefaultDelimiters>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<version>${maven-surefire-plugin.version}</version>
|
||
|
<configuration>
|
||
|
<skipTests>true</skipTests>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<includes>
|
||
|
<include>**/**</include>
|
||
|
</includes>
|
||
|
<filtering>true</filtering>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
|
||
|
<testResources>
|
||
|
<testResource>
|
||
|
<directory>src/test/resources</directory>
|
||
|
<includes>
|
||
|
<include>**/**</include>
|
||
|
</includes>
|
||
|
<filtering>true</filtering>
|
||
|
</testResource>
|
||
|
</testResources>
|
||
|
</build>
|
||
|
</project>
|