2021-04-01 11:06:10 +08:00
|
|
|
<?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>fizz-gateway-community</artifactId>
|
2021-04-20 10:54:38 +08:00
|
|
|
<groupId>com.fizzgate</groupId>
|
2021-12-09 13:05:33 +08:00
|
|
|
<version>2.5.0-beta1</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>fizz-common</artifactId>
|
|
|
|
|
|
|
|
|
|
<properties>
|
2021-08-30 10:10:30 +08:00
|
|
|
<version.joni>2.1.31</version.joni>
|
2021-04-01 11:06:10 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.networknt</groupId>
|
|
|
|
|
<artifactId>json-schema-validator-i18n-support</artifactId>
|
2021-04-30 17:20:59 +08:00
|
|
|
<version>1.0.39_5</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
2021-08-30 10:10:30 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jruby.joni</groupId>
|
|
|
|
|
<artifactId>joni</artifactId>
|
|
|
|
|
<version>${version.joni}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-04-01 11:06:10 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-pool2</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis-reactive</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.session</groupId>
|
|
|
|
|
<artifactId>spring-session-data-redis</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
|
<artifactId>bcpkix-jdk15on</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
</dependency>
|
2021-04-08 17:47:58 +08:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.kxml</groupId>
|
|
|
|
|
<artifactId>kxml2</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.skyscreamer</groupId>
|
|
|
|
|
<artifactId>jsonassert</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2021-06-23 22:17:28 +08:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
</dependency>
|
2021-11-20 16:41:10 +08:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-crypto</artifactId>
|
|
|
|
|
</dependency>
|
2021-04-01 11:06:10 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
2021-04-21 09:43:46 +08:00
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>repo</id>
|
2021-04-23 17:29:45 +08:00
|
|
|
<url>file://${project.basedir}/../repo</url>
|
2021-04-21 09:43:46 +08:00
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2021-11-08 18:21:29 +08:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
</plugin>
|
2021-04-21 09:43:46 +08:00
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
<version>3.2.4</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
|
<minimizeJar>true</minimizeJar>
|
|
|
|
|
<artifactSet>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>com.networknt:json-schema-validator-i18n-support</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</artifactSet>
|
|
|
|
|
<relocations>
|
|
|
|
|
<relocation>
|
|
|
|
|
<pattern>com.networknt</pattern>
|
|
|
|
|
<shadedPattern>we.repackaged.com.networknt</shadedPattern>
|
|
|
|
|
</relocation>
|
|
|
|
|
</relocations>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>shade</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2021-04-01 11:06:10 +08:00
|
|
|
</project>
|