upgrade java native to junit5 (#18617)

* upgrade java native to junit5

* upgrade build.gradle, optimize imports

* upgrade gradle, re-generate samples

* migrate api_test.mustache and petstore tests of native-async & native-jakarta
This commit is contained in:
Thorsten Hirsch
2024-05-10 04:50:54 +02:00
committed by GitHub
parent 29cfa3335d
commit 854e521a06
214 changed files with 686 additions and 837 deletions

View File

@@ -57,7 +57,7 @@
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M7</version>
<version>3.2.5</version>
<configuration>
<systemPropertyVariables>
<loggerPath>conf/log4j.properties</loggerPath>
@@ -242,8 +242,8 @@
<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>
@@ -257,7 +257,7 @@
<jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version>
<jakarta-annotation-version>1.3.5</jakarta-annotation-version>
<httpmime-version>4.5.14</httpmime-version>
<junit-version>4.13.2</junit-version>
<junit-version>5.10.2</junit-version>
<spotless.version>2.27.2</spotless.version>
</properties>
</project>