|
@@ -0,0 +1,116 @@
|
|
|
+<?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>fjhx-cloud</artifactId>
|
|
|
+ <groupId>com.fjhx</groupId>
|
|
|
+ <version>3.2.0</version>
|
|
|
+ </parent>
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+
|
|
|
+ <artifactId>hx-saas-project</artifactId>
|
|
|
+ <packaging>pom</packaging>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <maven.compiler.source>8</maven.compiler.source>
|
|
|
+ <maven.compiler.target>8</maven.compiler.target>
|
|
|
+
|
|
|
+ <bladex.version>2.8.2.RELEASE</bladex.version>
|
|
|
+ <hx.version>3.2.0</hx.version>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <modules>
|
|
|
+ <module>saas-storage</module>
|
|
|
+ </modules>
|
|
|
+
|
|
|
+ <dependencyManagement>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springblade.platform</groupId>
|
|
|
+ <artifactId>blade-bom</artifactId>
|
|
|
+ <version>${bladex.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fjhx</groupId>
|
|
|
+ <artifactId>hx-tool</artifactId>
|
|
|
+ <version>${hx.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fjhx</groupId>
|
|
|
+ <artifactId>client-util</artifactId>
|
|
|
+ <version>${hx.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fjhx</groupId>
|
|
|
+ <artifactId>product-library</artifactId>
|
|
|
+ <version>${hx.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fjhx</groupId>
|
|
|
+ <artifactId>iot-management-api</artifactId>
|
|
|
+ <version>${hx.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fjhx</groupId>
|
|
|
+ <artifactId>storage-api</artifactId>
|
|
|
+ <version>${hx.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fjhx</groupId>
|
|
|
+ <artifactId>service-file-api</artifactId>
|
|
|
+ <version>${hx.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fjhx</groupId>
|
|
|
+ <artifactId>hx-tool</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <resources>
|
|
|
+ <resource>
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
+ </resource>
|
|
|
+ <resource>
|
|
|
+ <directory>src/main/java</directory>
|
|
|
+ <includes>
|
|
|
+ <include>**/*.xml</include>
|
|
|
+ </includes>
|
|
|
+ </resource>
|
|
|
+ </resources>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <version>2.3.1.RELEASE</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>repackage</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+</project>
|