|
@@ -0,0 +1,76 @@
|
|
|
|
|
+<?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">
|
|
|
|
|
+ <parent>
|
|
|
|
|
+ <artifactId>jutil</artifactId>
|
|
|
|
|
+ <groupId>cn.reghao.jutil</groupId>
|
|
|
|
|
+ <version>1.0.0-SNAPSHOT</version>
|
|
|
|
|
+ </parent>
|
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
+
|
|
|
|
|
+ <artifactId>web</artifactId>
|
|
|
|
|
+
|
|
|
|
|
+ <properties>
|
|
|
|
|
+ <maven.compiler.source>11</maven.compiler.source>
|
|
|
|
|
+ <maven.compiler.target>11</maven.compiler.target>
|
|
|
|
|
+ </properties>
|
|
|
|
|
+
|
|
|
|
|
+ <dependencyManagement>
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
|
+ <version>2.3.8.RELEASE</version>
|
|
|
|
|
+ <type>pom</type>
|
|
|
|
|
+ <scope>import</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+ </dependencyManagement>
|
|
|
|
|
+
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.reghao.jutil</groupId>
|
|
|
|
|
+ <artifactId>jdk</artifactId>
|
|
|
|
|
+ <version>1.0.0-SNAPSHOT</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
|
|
+ <version>28.0-jre</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
+ <artifactId>jjwt</artifactId>
|
|
|
|
|
+ <version>0.9.1</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>javax.xml.bind</groupId>
|
|
|
|
|
+ <artifactId>jaxb-api</artifactId>
|
|
|
|
|
+ <version>2.3.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.sun.xml.bind</groupId>
|
|
|
|
|
+ <artifactId>jaxb-impl</artifactId>
|
|
|
|
|
+ <version>2.3.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.sun.xml.bind</groupId>
|
|
|
|
|
+ <artifactId>jaxb-core</artifactId>
|
|
|
|
|
+ <version>2.3.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>javax.activation</groupId>
|
|
|
|
|
+ <artifactId>activation</artifactId>
|
|
|
|
|
+ <version>1.1.1</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+</project>
|