257 lines
7.9 KiB
XML
257 lines
7.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/maven-v4_0_0.xsd">
|
|
<parent>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<version>3.3.7</version>
|
|
<relativePath>pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.ecep.contract</groupId>
|
|
<artifactId>Contract-Manager</artifactId>
|
|
<name>Contract-Manager</name>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<description>Contract-Manager</description>
|
|
<developers>
|
|
<developer>
|
|
<id>1</id>
|
|
<name>宋其青</name>
|
|
<email>qiqing.song@ecep.com</email>
|
|
</developer>
|
|
</developers>
|
|
<licenses>
|
|
<license />
|
|
</licenses>
|
|
<scm />
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
<version>0.0.8</version>
|
|
<configuration>
|
|
<mainClass>com.ecep.contract.manager.AppV2</mainClass>
|
|
<launcher>app</launcher>
|
|
<jlinkZipName>app-jlink</jlinkZipName>
|
|
<jlinkImageName>app-jlink-image</jlinkImageName>
|
|
<noManPages>true</noManPages>
|
|
<stripDebug>true</stripDebug>
|
|
<compress>2</compress>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.3.0</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
<version>3.3.7</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
<version>3.3.7</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
<artifactId>mssql-jdbc</artifactId>
|
|
<version>12.6.4.jre11</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
<artifactId>caffeine</artifactId>
|
|
<version>3.1.8</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.36</version>
|
|
<scope>provided</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<version>3.3.7</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>spring-boot-test</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>spring-boot-test-autoconfigure</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>json-path</artifactId>
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>json-smart</artifactId>
|
|
<groupId>net.minidev</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>assertj-core</artifactId>
|
|
<groupId>org.assertj</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>awaitility</artifactId>
|
|
<groupId>org.awaitility</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>hamcrest</artifactId>
|
|
<groupId>org.hamcrest</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>mockito-core</artifactId>
|
|
<groupId>org.mockito</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
<groupId>org.mockito</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>jsonassert</artifactId>
|
|
<groupId>org.skyscreamer</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>spring-test</artifactId>
|
|
<groupId>org.springframework</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>xmlunit-core</artifactId>
|
|
<groupId>org.xmlunit</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.zaxxer</groupId>
|
|
<artifactId>HikariCP</artifactId>
|
|
<version>5.1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
|
<version>3.3.7</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.data</groupId>
|
|
<artifactId>spring-data-jdbc</artifactId>
|
|
<version>3.3.7</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
<version>8.3.0</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>protobuf-java</artifactId>
|
|
<groupId>com.google.protobuf</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
<version>3.3.7</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.data</groupId>
|
|
<artifactId>spring-data-jpa</artifactId>
|
|
<version>3.3.7</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-controls</artifactId>
|
|
<version>22.0.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-fxml</artifactId>
|
|
<version>22.0.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-web</artifactId>
|
|
<version>22.0.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.controlsfx</groupId>
|
|
<artifactId>controlsfx</artifactId>
|
|
<version>11.2.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>2.17.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
<version>2.17.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-access</artifactId>
|
|
<version>1.5.12</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
<version>5.3.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>5.3.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>pdfbox</artifactId>
|
|
<version>3.0.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<java.version>22</java.version>
|
|
<poi.version>5.3.0</poi.version>
|
|
<javafx.version>22.0.2</javafx.version>
|
|
</properties>
|
|
</project>
|