Skip to content

Commit a961d4a

Browse files
committed
Regenerate files
1 parent 3621154 commit a961d4a

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

docs/generators/java-microprofile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
9797
|useBeanValidation|Use BeanValidation API annotations| |false|
9898
|useEnumCaseInsensitive|Use `equalsIgnoreCase` when String for enum comparison| |false|
9999
|useGzipFeature|Send gzip-encoded requests| |false|
100-
|useJackson3|Use Jackson 3 instead of Jackson 2. Supported for 'native' and 'apache-httpclient' libraries (requires Java 17+) and for Spring 'resttemplate', 'webclient', and 'restclient' libraries (require useSpringBoot4=true). Incompatible with 'openApiNullable'.| |false|
100+
|useJackson3|Use Jackson 3 instead of Jackson 2. Supported for 'native' and 'apache-httpclient' libraries (requires Java 17+) and for Spring 'resttemplate', 'webclient', and 'restclient' libraries (require useSpringBoot4=true).| |false|
101101
|useJakartaEe|whether to use Jakarta EE namespace instead of javax| |false|
102102
|useOneOfDiscriminatorLookup|Use the discriminator's mapping in oneOf to speed up the model lookup. IMPORTANT: Validation (e.g. one and only one match in oneOf's schemas) will be skipped. Only jersey2, jersey3, native, okhttp-gson support this option.| |false|
103103
|useOneOfInterfaces|whether to use a java interface to describe a set of oneOf options, where each option is a class that implements the interface| |false|

docs/generators/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
9797
|useBeanValidation|Use BeanValidation API annotations| |false|
9898
|useEnumCaseInsensitive|Use `equalsIgnoreCase` when String for enum comparison| |false|
9999
|useGzipFeature|Send gzip-encoded requests| |false|
100-
|useJackson3|Use Jackson 3 instead of Jackson 2. Supported for 'native' and 'apache-httpclient' libraries (requires Java 17+) and for Spring 'resttemplate', 'webclient', and 'restclient' libraries (require useSpringBoot4=true). Incompatible with 'openApiNullable'.| |false|
100+
|useJackson3|Use Jackson 3 instead of Jackson 2. Supported for 'native' and 'apache-httpclient' libraries (requires Java 17+) and for Spring 'resttemplate', 'webclient', and 'restclient' libraries (require useSpringBoot4=true).| |false|
101101
|useJakartaEe|whether to use Jakarta EE namespace instead of javax| |false|
102102
|useOneOfDiscriminatorLookup|Use the discriminator's mapping in oneOf to speed up the model lookup. IMPORTANT: Validation (e.g. one and only one match in oneOf's schemas) will be skipped. Only jersey2, jersey3, native, okhttp-gson support this option.| |false|
103103
|useOneOfInterfaces|whether to use a java interface to describe a set of oneOf options, where each option is a class that implements the interface| |false|

samples/client/echo_api/java/apache-httpclient/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ if(hasProperty('target') && target == 'android') {
110110
archives sourcesJar
111111
archives javadocJar
112112
}
113+
114+
test {
115+
useJUnitPlatform()
116+
}
113117
}
114118

115119
ext {
@@ -138,7 +142,3 @@ dependencies {
138142
testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
139143
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit_version"
140144
}
141-
142-
test {
143-
useJUnitPlatform()
144-
}

samples/client/petstore/java/apache-httpclient-jackson3/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ if(hasProperty('target') && target == 'android') {
110110
archives sourcesJar
111111
archives javadocJar
112112
}
113+
114+
test {
115+
useJUnitPlatform()
116+
}
113117
}
114118

115119
ext {
@@ -136,7 +140,3 @@ dependencies {
136140
testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
137141
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit_version"
138142
}
139-
140-
test {
141-
useJUnitPlatform()
142-
}

samples/client/petstore/java/apache-httpclient/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ if(hasProperty('target') && target == 'android') {
110110
archives sourcesJar
111111
archives javadocJar
112112
}
113+
114+
test {
115+
useJUnitPlatform()
116+
}
113117
}
114118

115119
ext {
@@ -138,7 +142,3 @@ dependencies {
138142
testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
139143
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit_version"
140144
}
141-
142-
test {
143-
useJUnitPlatform()
144-
}

0 commit comments

Comments
 (0)