Compare commits

..

1 Commits

Author SHA1 Message Date
jding-tlnd
eefe5674fa fix junit fail 2023-11-02 15:32:38 +08:00
5 changed files with 10 additions and 6 deletions

View File

@@ -42,7 +42,7 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20231013</version>
<version>20230227</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>

View File

@@ -10,7 +10,7 @@
<artifactId>studio-tacokit-dependencies</artifactId>
<packaging>pom</packaging>
<properties>
<tacokit.components.version>1.27.27</tacokit.components.version>
<tacokit.components.version>1.27.26</tacokit.components.version>
</properties>
<repositories>
<repository>

View File

@@ -11,7 +11,7 @@
<packaging>pom</packaging>
<properties>
<tcomp.version>1.38.12</tcomp.version>
<tcomp.version>1.38.11</tcomp.version>
<slf4j.version>1.7.32</slf4j.version>
<log4j2.version>2.17.1</log4j2.version>
<reload4j.version>1.2.19</reload4j.version>

View File

@@ -10,5 +10,4 @@ bin.includes = META-INF/,\
templates/,\
lib/crypto-utils.jar,\
lib/slf4j-api-1.7.25.jar,\
distribution/license.json,\
lib/jboss-marshalling-2.0.12.Final.jar
distribution/license.json

View File

@@ -374,7 +374,12 @@ public class AggregatorPomsHelperTest {
String jobGroupId = PomIdsHelper.getJobGroupId(jobProperty);
String jobVersion = PomIdsHelper.getJobVersion(jobProperty);
helper.syncAllPomsWithoutProgress(new NullProgressMonitor());
System.setProperty("ci.mode", "true");
try {
helper.syncAllPomsWithoutProgress(new NullProgressMonitor());
} finally {
System.setProperty("ci.mode", "false");
}
// check project pom.
IFile projectPomFile = new AggregatorPomsHelper().getProjectRootPom();