瀏覽代碼

新增maven全局排除logging

hubin 1 年之前
父節點
當前提交
534c317a3b
共有 1 個文件被更改,包括 12 次插入0 次删除
  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>