From 2f73a671db8bf132baaba12a5c2a9c3b611589e9 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期四, 01 八月 2019 17:14:26 +0800
Subject: [PATCH] 修复 添加房屋时的侦听 类修改
---
UserService/pom.xml | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/UserService/pom.xml b/UserService/pom.xml
index 03218eb..ea2e808 100644
--- a/UserService/pom.xml
+++ b/UserService/pom.xml
@@ -15,6 +15,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <maven.compiler.source>1.7</maven.compiler.source>
+ <maven.compiler.target>1.7</maven.compiler.target>
</properties>
<dependencies>
@@ -23,11 +25,16 @@
<groupId>com.java110</groupId>
<artifactId>java110-service</artifactId>
</dependency>
+ <dependency>
+ <groupId>com.java110</groupId>
+ <artifactId>java110-event</artifactId>
+ </dependency>
</dependencies>
<build>
+ <finalName>UserService</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -55,6 +62,13 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-maven-plugin</artifactId>
+ <configuration>
+ <mainClass>com.java110.user.UserServiceApplicationStart</mainClass>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>
--
Gitblit v1.8.0