Files
nl-verify-check-sdk/nl-verify-check-sdk/pom.xml
2025-11-21 10:20:37 +08:00

51 lines
1.7 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.nl</groupId>
<artifactId>nl-verify-check</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>nl-verify-check-sdk</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.6.4</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
<scope>compile</scope>
</dependency>
</dependencies>
<distributionManagement>
<!--正式版本-->
<repository>
<!-- maven settings.xml中<server>的id-->
<id>maven-releases</id>
<name>nexus-releases</name>
<url>http://47.111.78.178:8013/repository/maven-releases/</url>
</repository>
<!--快照-->
<snapshotRepository>
<id>maven-snapshots</id>
<name>nexus-snapshots</name>
<url>http://47.111.78.178:8013/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>