<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.ohos.connect</groupId>
<artifactId>ModelCloud</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>modelcloud-web-app</artifactId>
<packaging>jar</packaging>
<description>主启动模块</description>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>-->
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
</dependency>-->
<groupId>com.oracle.database.nls</groupId>
<artifactId>orai18n</artifactId>
</dependency>-->
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
</dependency>-->
<groupId>com.dameng</groupId>
<artifactId>DmJdbcDriver18</artifactId>
</dependency>-->
<groupId>cn.com.kingbase</groupId>
<artifactId>kingbase8</artifactId>
</dependency>-->
<dependency>
<groupId>com.ohos.connect</groupId>
<artifactId>modelcloud-plugin-auth</artifactId>
</dependency>
<dependency>
<groupId>com.ohos.connect</groupId>
<artifactId>modelcloud-plugin-biz</artifactId>
</dependency>
<dependency>
<groupId>com.ohos.connect</groupId>
<artifactId>modelcloud-plugin-dev</artifactId>
</dependency>
<dependency>
<groupId>com.ohos.connect</groupId>
<artifactId>modelcloud-plugin-sys</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.5.12</version>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>