Ver código fonte

新增maven全局排除logging

hubin 1 ano atrás
pai
commit
534c317a3b
1 arquivos alterados com 12 adições e 0 exclusões
  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>