Browse Source

新增maven全局排除logging

hubin 1 năm trước cách đây
mục cha
commit
534c317a3b
1 tập tin đã thay đổi với 12 bổ sung0 xóa
  1. 12 0
      pom.xml

+ 12 - 0
pom.xml

@@ -106,6 +106,18 @@
 			<artifactId>lombok</artifactId>
 			<scope>provided</scope>
 		</dependency>
+
+		<!-- 全局排除 -->
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-logging</artifactId>
+			<exclusions>
+				<exclusion>
+					<groupId>*</groupId>
+					<artifactId>*</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
 	</dependencies>
 
 	<build>