2025-03-31 14:37:09 +08: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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<groupId>com.chinaweal.youfool</groupId>
|
|
|
|
|
<artifactId>youfool-holiday-sdk</artifactId>
|
2025-11-12 10:20:47 +08:00
|
|
|
<version>1.0.0</version>
|
2025-03-31 14:37:09 +08:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
<url>https://www.chinaweal.com.cn</url>
|
|
|
|
|
<description>假期sdk工具包</description>
|
|
|
|
|
<properties>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
|
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
|
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
2025-11-12 10:20:47 +08:00
|
|
|
<version>1.18.30</version>
|
2025-03-31 14:37:09 +08:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
|
|
|
<artifactId>fastjson2</artifactId>
|
|
|
|
|
<version>2.0.56</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>4.12</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2025-11-12 10:20:47 +08:00
|
|
|
|
|
|
|
|
<!-- Spring Boot 自动配置支持 - 兼容 Spring Boot 2.7.x 和 3.x -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
|
<version>2.7.18</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Spring Boot 配置处理器,用于生成配置元数据 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<version>2.7.18</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
2025-03-31 14:37:09 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<!-- 要将源码放上去,需要加入这个插件 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<version>3.3.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<attach>true</attach>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>compile</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>nexus</id>
|
|
|
|
|
<name>Nexus Snapshot Repository</name>
|
|
|
|
|
<url>http://121.8.152.130:8081/nexus/content/repositories/snapshots/</url>
|
|
|
|
|
</snapshotRepository>
|
2025-11-12 10:20:47 +08:00
|
|
|
<repository>
|
|
|
|
|
<id>nexus</id>
|
|
|
|
|
<name>Nexus Release Repository</name>
|
|
|
|
|
<url>http://121.8.152.130:8081/nexus/content/repositories/releases/</url>
|
|
|
|
|
</repository>
|
2025-03-31 14:37:09 +08:00
|
|
|
</distributionManagement>
|
|
|
|
|
</project>
|