You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
3.2 KiB
89 lines
3.2 KiB
1 year ago
|
<?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.mh</groupId>
|
||
|
<artifactId>chws</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<packaging>pom</packaging>
|
||
|
<modules>
|
||
|
<module>common</module>
|
||
|
<module>user-service</module>
|
||
|
</modules>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>2.2.5.RELEASE</version>
|
||
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
</parent>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
<java.version>1.8</java.version>
|
||
|
<spring-cloud.version>Hoxton.SR3</spring-cloud.version>
|
||
|
<swagger.version>2.9.2</swagger.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jolokia</groupId>
|
||
|
<artifactId>jolokia-core</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.springfox</groupId>
|
||
|
<artifactId>springfox-swagger2</artifactId>
|
||
|
<version>${swagger.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.springfox</groupId>
|
||
|
<artifactId>springfox-swagger-ui</artifactId>
|
||
|
<version>${swagger.version}</version>
|
||
|
</dependency>
|
||
|
<!-- 添加consul依赖-->
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>org.springframework.cloud</groupId>-->
|
||
|
<!-- <artifactId>spring-cloud-starter-consul-discovery</artifactId>-->
|
||
|
<!-- </dependency>-->
|
||
|
|
||
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-aop -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-aop</artifactId>
|
||
|
<version>2.2.5.RELEASE</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.rxtx</groupId>
|
||
|
<artifactId>rxtx</artifactId>
|
||
|
<version>2.1.7</version>
|
||
|
</dependency>
|
||
|
<!--串口开发-->
|
||
|
<dependency>
|
||
|
<groupId>com.github.purejavacomm</groupId>
|
||
|
<artifactId>purejavacomm</artifactId>
|
||
|
<version>1.0.1.RELEASE</version>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-dependencies</artifactId>
|
||
|
<version>${spring-cloud.version}</version>
|
||
|
<type>pom</type>
|
||
|
<scope>import</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
</project>
|