补充processor可选配置

This commit is contained in:
liuweijw
2018-08-16 16:40:30 +08:00
parent 75d40064d4
commit 4673c96a8d
5 changed files with 35 additions and 5 deletions

View File

@@ -82,5 +82,11 @@
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-zipkin</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>

View File

@@ -4,7 +4,7 @@
<artifactId>fw-cloud-business-pay</artifactId>
<packaging>jar</packaging>
<name>fw-cloud-business-pay</name>
<description>支付平台服务</description>
@@ -30,6 +30,12 @@
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-pay</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>

View File

@@ -4,7 +4,7 @@
<artifactId>fw-cloud-business-wechat</artifactId>
<packaging>jar</packaging>
<name>fw-cloud-business-wechat</name>
<description>微信公众号服务</description>
@@ -35,6 +35,12 @@
<groupId>com.github.binarywang</groupId>
<artifactId>java-emoji-converter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>

View File

@@ -34,5 +34,11 @@
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>

View File

@@ -4,7 +4,7 @@
<artifactId>fw-cloud-system-auth</artifactId>
<packaging>jar</packaging>
<name>fw-cloud-system-auth</name>
<description>统一权限验证模块</description>
@@ -20,13 +20,13 @@
<groupId>com.github.liuweijw.core</groupId>
<artifactId>fw-cloud-core-commons</artifactId>
</dependency>
<!-- system 相关feign api -->
<dependency>
<groupId>com.github.liuweijw.api</groupId>
<artifactId>fw-cloud-system-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-oauth2</artifactId>
@@ -39,6 +39,12 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>