106 lines
3.1 KiB
XML
106 lines
3.1 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.5</version>
|
|
<relativePath />
|
|
</parent>
|
|
|
|
<groupId>com.yixiong</groupId>
|
|
<artifactId>iot-util</artifactId>
|
|
<version>1.0</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<description>iot-util for yixiong</description>
|
|
|
|
<properties>
|
|
<java.version>21</java.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.noear</groupId>
|
|
<artifactId>solon-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.noear</groupId>
|
|
<artifactId>solon-view-freemarker</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>
|
|
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>4.12.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.noear</groupId>
|
|
<artifactId>solon-serialization-jackson</artifactId>
|
|
<version>3.10.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-solon-plugin</artifactId>
|
|
<version>1.44.0</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> |