sac/sf-admin/pom.xml
akun 3a6b90197c Merge remote-tracking branch 'origin/competition' into deployment_gateway_20240416
# Conflicts:
#	pom.xml
#	sf-admin/pom.xml
#	sf-admin/src/main/resources/application.yml
#	sf-service/pom.xml
#	sf-system/src/main/java/com/sf/system/deployment/controller/DeploymentApplyEnvironmentController.java
#	sf-system/src/main/java/com/sf/system/deployment/controller/DeploymentServicePublishController.java
#	sf-system/src/main/java/com/sf/system/deployment/domain/DeploymentApplyEnvironment.java
#	sf-system/src/main/java/com/sf/system/deployment/domain/DeploymentServicePublish.java
#	sf-system/src/main/java/com/sf/system/deployment/mapper/DeploymentApplyEnvironmentMapper.java
#	sf-system/src/main/java/com/sf/system/deployment/service/IDeploymentApplyEnvironmentService.java
#	sf-system/src/main/java/com/sf/system/deployment/service/IDeploymentServicePublishService.java
#	sf-system/src/main/java/com/sf/system/deployment/service/impl/DeploymentApplyEnvironmentServiceImpl.java
#	sf-system/src/main/java/com/sf/system/deployment/service/impl/DeploymentServicePublishServiceImpl.java
#	sf-system/src/main/resources/mapper/system/deployment/DeploymentApplyEnvironmentMapper.xml
#	sf-system/src/main/resources/mapper/system/deployment/DeploymentServicePublishMapper.xml
#	sf-ui/package.json
#	sf-ui/src/api/FDS/whiteList.js
#	sf-ui/src/api/deploy/INFO.js
#	sf-ui/src/api/deployment/publish.js
#	sf-ui/src/components/FileUpload/index.vue
#	sf-ui/src/components/ImageUpload/index.vue
#	sf-ui/src/store/modules/permission.js
#	sf-ui/src/store/modules/user.js
#	sf-ui/src/utils/application.js
#	sf-ui/src/utils/request.js
#	sf-ui/src/views/FDS/installationList/add.vue
#	sf-ui/src/views/FDS/installationList/detail.vue
#	sf-ui/src/views/FDS/installationList/edit.vue
#	sf-ui/src/views/FDS/installationList/index.vue
#	sf-ui/src/views/FDS/publishList/components/addPack.vue
#	sf-ui/src/views/FDS/publishList/index.vue
#	sf-ui/src/views/FDS/whiteListManagement/add.vue
#	sf-ui/src/views/FDS/whiteListManagement/edit.vue
#	sf-ui/src/views/FDS/whiteListManagement/index.vue
#	sf-ui/src/views/deploy/INFO/add.vue
#	sf-ui/src/views/deployment/publish/index.vue
#	sf-ui/src/views/indexNew.vue
#	sf-ui/src/views/service/goods/index.vue
#	sf-ui/vue.config.js
2024-05-10 14:21:47 +08:00

116 lines
3.7 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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>smarterFramework</artifactId>
<groupId>com.smarterFramework</groupId>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<artifactId>sf-admin</artifactId>
<description>
web服务入口
</description>
<dependencies>
<!-- spring-boot-devtools -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional> <!-- 表示依赖不会传递 -->
</dependency>
<!-- swagger3-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
</dependency>
<!-- 防止进入swagger页面报类型转换错误排除3.0.0中的引用手动增加1.6.2版本 -->
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-models</artifactId>
<version>1.6.2</version>
</dependency>
<!-- Mysql驱动包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<!-- 核心模块-->
<dependency>
<groupId>com.smarterFramework</groupId>
<artifactId>sf-framework</artifactId>
</dependency>
<!-- 定时任务-->
<dependency>
<groupId>com.smarterFramework</groupId>
<artifactId>sf-quartz</artifactId>
</dependency>
<!-- 文件服务-->
<dependency>
<groupId>com.smarterFramework</groupId>
<artifactId>sf-file</artifactId>
</dependency>
<dependency>
<groupId>com.smarterFramework</groupId>
<artifactId>sf-oauth</artifactId>
</dependency>
<dependency>
<groupId>com.smarterFramework</groupId>
<artifactId>sf-order</artifactId>
</dependency>
<dependency>
<groupId>com.smarterFramework</groupId>
<artifactId>sf-payment</artifactId>
</dependency>
<!-- 业务模块-->
<dependency>
<groupId>com.smarterFramework</groupId>
<artifactId>sf-service</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.1.1.RELEASE</version>
<configuration>
<fork>true</fork> <!-- 如果没有该配置devtools不会生效 -->
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<warName>${project.artifactId}</warName>
</configuration>
</plugin>
</plugins>
<finalName>${project.artifactId}</finalName>
</build>
</project>