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>
|
|
|
|
|
<groupId>we</groupId>
|
|
|
|
|
<version>1.5.0</version>
|
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>fizz-bootstrap</artifactId>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.networknt</groupId>
|
|
|
|
|
<artifactId>json-schema-validator-i18n-support</artifactId>
|
|
|
|
|
<version>1.0.39_4</version>
|
|
|
|
|
<scope>system</scope>
|
|
|
|
|
<systemPath>${project.basedir}/../lib/json-schema-validator-i18n-support-1.0.39_4.jar</systemPath>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>we</groupId>
|
2021-04-08 21:29:23 +08:00
|
|
|
<artifactId>fizz-spring-boot-starter</artifactId>
|
|
|
|
|
<version>1.5.0</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
2021-04-08 21:29:23 +08:00
|
|
|
<profiles>
|
|
|
|
|
<!--<profile>
|
|
|
|
|
<id>release</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
|
<version>${maven-deploy-plugin.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<skip>true</skip>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>-->
|
|
|
|
|
</profiles>
|
|
|
|
|
|
2021-04-01 11:06:10 +08:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|