35 lines
968 B
Diff
35 lines
968 B
Diff
From d8d46d93c40284fe6f40242e8fa50a0e6e3b6433 Mon Sep 17 00:00:00 2001
|
|
From: hht8 <huanghaitao12138@163.com>
|
|
Date: Tue, 27 Oct 2020 17:08:24 +0800
|
|
Subject: [PATCH] 2
|
|
|
|
---
|
|
pom.xml | 14 +++++++++++++-
|
|
1 file changed, 13 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/pom.xml b/pom.xml
|
|
index 2fde544..02154ab 100644
|
|
--- a/pom.xml
|
|
+++ b/pom.xml
|
|
@@ -305,7 +305,16 @@
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.3</version>
|
|
- <extensions>true</extensions>
|
|
+ <extensions>true</extensions>
|
|
+ <executions>
|
|
+ <execution>
|
|
+ <id>default-testCompile</id>
|
|
+ <phase>test-compile</phase>
|
|
+ <configuration>
|
|
+ <skip>true</skip>
|
|
+ </configuration>
|
|
+ </execution>
|
|
+ </executions>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
--
|
|
2.23.0
|
|
|