From d9b2c4b780340d2d2e8ca1a328034f19092fcddb Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期三, 10 七月 2019 17:57:08 +0800
Subject: [PATCH] 提交breadcrumb功能
---
UserService/pom.xml | 18 ++++++++++++++++--
1 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/UserService/pom.xml b/UserService/pom.xml
index 0ea05dc..ea2e808 100644
--- a/UserService/pom.xml
+++ b/UserService/pom.xml
@@ -15,19 +15,26 @@
<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>service</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>
@@ -44,7 +51,7 @@
<artifactItems>
<artifactItem>
<groupId>com.java110</groupId>
- <artifactId>config</artifactId>
+ <artifactId>java110-config</artifactId>
<version>${microcommunity.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
@@ -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