123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?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-service</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>iot-management</module>
- <module>storage</module>
- <module>service-file</module>
- </modules>
- <dependencyManagement>
- <dependencies>
- <!-- blade -->
- <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>
|