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 | 50 +++++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 49 insertions(+), 1 deletions(-)
diff --git a/UserService/pom.xml b/UserService/pom.xml
index b3b672c..ea2e808 100644
--- a/UserService/pom.xml
+++ b/UserService/pom.xml
@@ -15,12 +15,60 @@
<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>
+
<dependency>
<groupId>com.java110</groupId>
- <artifactId>common</artifactId>
+ <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>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.10</version>
+ <executions>
+ <execution>
+ <id>unpack</id>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>com.java110</groupId>
+ <artifactId>java110-config</artifactId>
+ <version>${microcommunity.version}</version>
+ <type>jar</type>
+ <overWrite>true</overWrite>
+ <outputDirectory>${project.build.directory}/classes</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </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