109 lines
3.2 KiB
XML
109 lines
3.2 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.noear</groupId>
|
|
<artifactId>solon-parent</artifactId>
|
|
<version>3.10.0</version>
|
|
<relativePath />
|
|
</parent>
|
|
|
|
<groupId>com.yxtech</groupId>
|
|
<artifactId>ossutil</artifactId>
|
|
<version>1.0</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<description>watch valid</description>
|
|
|
|
<properties>
|
|
<java.version>21</java.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- AIO 服务器,高并发低开销 -->
|
|
<dependency>
|
|
<groupId>org.noear</groupId>
|
|
<artifactId>solon-boot-smarthttp</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.noear</groupId>
|
|
<artifactId>solon-logging-logback-jakarta</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.noear</groupId>
|
|
<artifactId>solon-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- HTTP 客户端,用于调用 IOSP OSS 接口 -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.14</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpmime</artifactId>
|
|
<version>4.5.14</version>
|
|
</dependency>
|
|
|
|
<!-- YAML 配置支持 -->
|
|
<dependency>
|
|
<groupId>org.noear</groupId>
|
|
<artifactId>solon-config-yaml</artifactId>
|
|
</dependency>
|
|
|
|
<!-- JSON 解析 -->
|
|
<dependency>
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
<artifactId>fastjson2</artifactId>
|
|
<version>2.0.53</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.noear</groupId>
|
|
<artifactId>solon-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>tencent</id>
|
|
<url>https://mirrors.cloud.tencent.com/nexus/repository/maven-public/</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
</project> |