diff options
| author | fengjunfeng <[email protected]> | 2021-12-29 11:37:15 +0800 |
|---|---|---|
| committer | fengjunfeng <[email protected]> | 2021-12-29 11:37:15 +0800 |
| commit | d6826dcd42c1a630ecbe08203b1c09d18dd13c33 (patch) | |
| tree | b1a4d8d0184cf09a45aaa71d78fb9e49a46a277f /pom.xml | |
bifang-api 授权调用支持
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 73 |
1 files changed, 73 insertions, 0 deletions
@@ -0,0 +1,73 @@ +<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-parent</artifactId> + <version>2.6.2</version> + <relativePath/> <!-- lookup parent from repository --> + </parent> + <groupId>com.sentinel</groupId> + <artifactId>ldk</artifactId> + <version>0.0.1-SNAPSHOT</version> + <name>ldk</name> + <description>Demo project for Spring Boot</description> + <properties> + <java.version>1.8</java.version> + </properties> + <repositories> + <repository> + <id>nexus</id> + <name>Team Nexus Repository</name> + <url>http://192.168.40.125:8099/content/groups/public/</url> + </repository> + </repositories> + <pluginRepositories> + <pluginRepository> + <id>nexus</id> + <name>Team Nexus Repository</name> + <url>http://192.168.40.125:8099/content/groups/public/</url> + </pluginRepository> + </pluginRepositories> + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + </dependency> + + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>net.geedge</groupId> + <artifactId>hasp-srm-api</artifactId> + <version>1.0</version> + </dependency> + <dependency> + <groupId>cn.hutool</groupId> + <artifactId>hutool-all</artifactId> + <version>5.5.4</version> + </dependency> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + </dependency> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + </plugin> + </plugins> + </build> + +</project> |
