171 lines
5.3 KiB
XML
171 lines
5.3 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.budwk</groupId>
|
|
<artifactId>v4</artifactId>
|
|
<version>5.6.0-plus</version>
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<includes>
|
|
<include>**/*</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>17</source>
|
|
<target>17</target>
|
|
<compilerArgs>
|
|
<arg>--add-opens</arg>
|
|
<arg>java.base/java.lang=ALL-UNNAMED</arg>
|
|
</compilerArgs>
|
|
<useIncrementalCompilation>false</useIncrementalCompilation>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.0.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
<charset>UTF-8</charset>
|
|
<docencoding>UTF-8</docencoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.0.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>compile</phase>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<attach>true</attach>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.22.0</version>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.nutz.boot</groupId>
|
|
<artifactId>nutzboot-maven-plugin</artifactId>
|
|
<version>${nutzboot.version}</version>
|
|
<configuration>
|
|
<mainClass>com.budwk.app.MainLauncher</mainClass>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<repository>
|
|
<id>nutz</id>
|
|
<url>https://jfrog.nutz.cn/artifactory/libs-release</url>
|
|
</repository>
|
|
<repository>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<updatePolicy>always</updatePolicy>
|
|
</snapshots>
|
|
<id>nutz-snapshots</id>
|
|
<url>https://jfrog.nutz.cn/artifactory/snapshots</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<updatePolicy>always</updatePolicy>
|
|
</snapshots>
|
|
<id>nutz-snapshots</id>
|
|
<url>https://jfrog.nutz.cn/artifactory/snapshots</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>javax.xml</groupId>
|
|
<artifactId>jaxrpc</artifactId>
|
|
<version>1.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.nutz</groupId>
|
|
<artifactId>nutzboot-starter-test-junit4</artifactId>
|
|
<version>2.6.0-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.13.1</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>hamcrest-core</artifactId>
|
|
<groupId>org.hamcrest</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.nutz</groupId>
|
|
<artifactId>nutzboot-parent</artifactId>
|
|
<version>${nutzboot.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.xml.bind</groupId>
|
|
<artifactId>jaxb-api</artifactId>
|
|
<version>${jaxb-api.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<properties>
|
|
<easypoi.version>4.5.0</easypoi.version>
|
|
<jsoup.veision>1.15.3</jsoup.veision>
|
|
<mysql-connector-java.version>8.0.28</mysql-connector-java.version>
|
|
<sa-token.version>1.25.0</sa-token.version>
|
|
<easy-captcha.version>1.6.2</easy-captcha.version>
|
|
<emoji-java.veision>4.0.0</emoji-java.veision>
|
|
<jaxb-api.version>2.3.1</jaxb-api.version>
|
|
<lombok.version>1.18.34</lombok.version>
|
|
<slf4j.version>2.0.8</slf4j.version>
|
|
<poitl.version>1.12.2</poitl.version>
|
|
<poi.version>4.1.2</poi.version>
|
|
<commons-lang3.version>3.8.1</commons-lang3.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<pinyin4j.veision>2.5.1</pinyin4j.veision>
|
|
<nutzboot.version>2.6.0-SNAPSHOT</nutzboot.version>
|
|
<logback.version>1.5.8</logback.version>
|
|
<nutz.version>1.r.70-SNAPSHOT</nutz.version>
|
|
<tencentcloud-sdk-java.version>4.0.11</tencentcloud-sdk-java.version>
|
|
</properties>
|
|
</project>
|