55 lines
1.8 KiB
XML
55 lines
1.8 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/maven-v4_0_0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<parent>
|
||
|
|
<groupId>com.zcloud.basic.info</groupId>
|
||
|
|
<artifactId>zcloud_gbs_basic_info_gwj</artifactId>
|
||
|
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
<relativePath>../pom.xml</relativePath>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<artifactId>start</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<name>start</name>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.zcloud.basic.info</groupId>
|
||
|
|
<artifactId>web-adapter</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.flywaydb</groupId>
|
||
|
|
<artifactId>flyway-mysql</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.jjb.saas</groupId>
|
||
|
|
<artifactId>jjb-saas-gateway-starter</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.jjb.saas</groupId>
|
||
|
|
<artifactId>jjb-saas-framework-web</artifactId>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<finalName>${project.artifactId}</finalName>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<mainClass>com.zcloud.risk.Application</mainClass>
|
||
|
|
</configuration>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<goals>
|
||
|
|
<goal>repackage</goal>
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
</project>
|