|
@@ -0,0 +1,110 @@
|
|
|
+<?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>
|
|
|
+
|
|
|
+ <groupId>com.fcb.manager</groupId>
|
|
|
+ <artifactId>fcb.manager</artifactId>
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
+ <description>房车宝管理后台综合管理微服务</description>
|
|
|
+
|
|
|
+
|
|
|
+ <packaging>jar</packaging>
|
|
|
+
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <java.version>1.8</java.version>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
+ <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
|
|
+ <nacos.latest.version>0.2.1</nacos.latest.version>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <parent>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>2.2.5.RELEASE</version>
|
|
|
+ <relativePath/> <!-- lookup parent from repository -->
|
|
|
+ </parent>
|
|
|
+
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+ <!-- 引入sdk -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.4dage</groupId>
|
|
|
+ <artifactId>4dage-back-sdk</artifactId>
|
|
|
+ <version>1.0.2-RELEASE</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 引入nacos配置中心 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.boot</groupId>
|
|
|
+ <artifactId>nacos-config-spring-boot-starter</artifactId>
|
|
|
+ <version>0.2.6</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <!-- 引入nacos服务发现 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.boot</groupId>
|
|
|
+ <artifactId>nacos-discovery-spring-boot-starter</artifactId>
|
|
|
+ <version>0.2.6</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <finalName>fcb.manager</finalName>
|
|
|
+
|
|
|
+ <resources>
|
|
|
+ <resource>
|
|
|
+ <directory>src/main/java</directory>
|
|
|
+ <includes>
|
|
|
+ <include>**/*.properties</include>
|
|
|
+ <include>**/*.xml</include>
|
|
|
+ </includes>
|
|
|
+ <filtering>false</filtering>
|
|
|
+ </resource>
|
|
|
+ <resource>
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
+ <includes>
|
|
|
+ <include>**/*.properties</include>
|
|
|
+ <include>**/*.xml</include>
|
|
|
+ </includes>
|
|
|
+ <filtering>false</filtering>
|
|
|
+ </resource>
|
|
|
+ </resources>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <!-- 工程主入口 -->
|
|
|
+ <mainClass>com.scaffolding.app.portal.App</mainClass>
|
|
|
+ </configuration>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>repackage</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+</project>
|