forked from loafle/openapi-generator-original
Merge remote-tracking branch 'origin/master' into 8.0.x
This commit is contained in:
commit
2b23399f9a
4
.github/workflows/linux.yaml
vendored
4
.github/workflows/linux.yaml
vendored
@ -45,7 +45,7 @@ jobs:
|
|||||||
${{ runner.os }}-gradle-
|
${{ runner.os }}-gradle-
|
||||||
|
|
||||||
- name: Setup Maven
|
- name: Setup Maven
|
||||||
uses: s4u/setup-maven-action@v1.13.0
|
uses: s4u/setup-maven-action@v1.14.0
|
||||||
with:
|
with:
|
||||||
java-version: ${{ matrix.java }}
|
java-version: ${{ matrix.java }}
|
||||||
maven-version: 3.8.8
|
maven-version: 3.8.8
|
||||||
@ -87,7 +87,7 @@ jobs:
|
|||||||
- name: Check out code
|
- name: Check out code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Setup Maven
|
- name: Setup Maven
|
||||||
uses: s4u/setup-maven-action@v1.13.0
|
uses: s4u/setup-maven-action@v1.14.0
|
||||||
with:
|
with:
|
||||||
java-version: 11
|
java-version: 11
|
||||||
maven-version: 3.8.8
|
maven-version: 3.8.8
|
||||||
|
1
.github/workflows/maven-plugin-tests.yaml
vendored
1
.github/workflows/maven-plugin-tests.yaml
vendored
@ -39,6 +39,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
./mvnw clean install -DskipTests -Dmaven.javadoc.skip=true
|
./mvnw clean install -DskipTests -Dmaven.javadoc.skip=true
|
||||||
./mvnw --no-snapshot-updates --quiet clean compile -f modules/openapi-generator-maven-plugin/examples/java-client.xml -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
./mvnw --no-snapshot-updates --quiet clean compile -f modules/openapi-generator-maven-plugin/examples/java-client.xml -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
||||||
|
./mvnw --no-snapshot-updates --quiet clean install -f modules/openapi-generator-maven-plugin/examples/multi-module/sample-external-ref-schema/pom.xml -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
||||||
./mvnw --no-snapshot-updates --quiet clean compile -f modules/openapi-generator-maven-plugin/examples/multi-module/pom.xml -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
./mvnw --no-snapshot-updates --quiet clean compile -f modules/openapi-generator-maven-plugin/examples/multi-module/pom.xml -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
||||||
./mvnw --no-snapshot-updates --quiet clean compile -f modules/openapi-generator-maven-plugin/examples/kotlin.xml -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
./mvnw --no-snapshot-updates --quiet clean compile -f modules/openapi-generator-maven-plugin/examples/kotlin.xml -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
||||||
./mvnw --no-snapshot-updates --quiet clean compile -f modules/openapi-generator-maven-plugin/examples/spring.xml -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
./mvnw --no-snapshot-updates --quiet clean compile -f modules/openapi-generator-maven-plugin/examples/spring.xml -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
||||||
|
17
.github/workflows/openapi-generator.yaml
vendored
17
.github/workflows/openapi-generator.yaml
vendored
@ -151,7 +151,24 @@ jobs:
|
|||||||
rm -rf samples/client/petstore/csharp/generichost/net8/Petstore
|
rm -rf samples/client/petstore/csharp/generichost/net8/Petstore
|
||||||
rm -rf samples/client/petstore/csharp/generichost/net8/SourceGeneration
|
rm -rf samples/client/petstore/csharp/generichost/net8/SourceGeneration
|
||||||
rm -rf samples/client/petstore/csharp/generichost/net8/UseDateTimeForDate
|
rm -rf samples/client/petstore/csharp/generichost/net8/UseDateTimeForDate
|
||||||
|
|
||||||
rm -rf samples/client/petstore/csharp/generichost/standard2.0/Petstore
|
rm -rf samples/client/petstore/csharp/generichost/standard2.0/Petstore
|
||||||
|
|
||||||
|
rm -rf samples/client/petstore/csharp/generichost/net4.8/AllOf
|
||||||
|
rm -rf samples/client/petstore/csharp/generichost/net4.8/AnyOf
|
||||||
|
rm -rf samples/client/petstore/csharp/generichost/net4.8/AnyOfNoCompare
|
||||||
|
rm -rf samples/client/petstore/csharp/generichost/net4.8/FormModels
|
||||||
|
rm -rf samples/client/petstore/csharp/generichost/net4.8/OneOf
|
||||||
|
rm -rf samples/client/petstore/csharp/generichost/net4.8/Petstore
|
||||||
|
rm -rf samples/client/petstore/csharp/generichost/net4.8/UseDateTimeForDate
|
||||||
|
|
||||||
|
rm -rf samples/client/petstore/csharp/generichost/net4.7/AllOf
|
||||||
|
rm -rf samples/client/petstore/csharp/generichost/net4.7/AnyOf
|
||||||
|
rm -rf samples/client/petstore/csharp/generichost/net4.7/AnyOfNoCompare
|
||||||
|
rm -rf samples/client/petstore/csharp/generichost/net4.7/FormModels
|
||||||
|
rm -rf samples/client/petstore/csharp/generichost/net4.7/OneOf
|
||||||
|
rm -rf samples/client/petstore/csharp/generichost/net4.7/Petstore
|
||||||
|
rm -rf samples/client/petstore/csharp/generichost/net4.7/UseDateTimeForDate
|
||||||
- name: Generate samples
|
- name: Generate samples
|
||||||
run: |
|
run: |
|
||||||
bash bin/generate-samples.sh
|
bash bin/generate-samples.sh
|
||||||
|
11
.github/workflows/samples-cpp-qt-client.yaml
vendored
11
.github/workflows/samples-cpp-qt-client.yaml
vendored
@ -3,10 +3,10 @@ name: Samples cpp qt client
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- 'samples/client/petstore/cpp-qt/**'
|
- "samples/client/petstore/cpp-qt/**"
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- 'samples/client/petstore/cpp-qt/**'
|
- "samples/client/petstore/cpp-qt/**"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
GRADLE_VERSION: 6.9
|
GRADLE_VERSION: 6.9
|
||||||
@ -16,9 +16,6 @@ jobs:
|
|||||||
name: Build cpp qt client
|
name: Build cpp qt client
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
qt-version:
|
|
||||||
- '5.15.2'
|
|
||||||
- '6.5.3'
|
|
||||||
os:
|
os:
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
- macOS-latest
|
- macOS-latest
|
||||||
@ -29,8 +26,8 @@ jobs:
|
|||||||
- name: Install Qt
|
- name: Install Qt
|
||||||
uses: jurplel/install-qt-action@v4
|
uses: jurplel/install-qt-action@v4
|
||||||
with:
|
with:
|
||||||
version: ${{ matrix.qt-version }}
|
version: "6.7.1"
|
||||||
tools: ${{ matrix.tools }}
|
target: "desktop"
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: "samples/client/petstore/cpp-qt"
|
working-directory: "samples/client/petstore/cpp-qt"
|
||||||
run: cmake . && cmake --build .
|
run: cmake . && cmake --build .
|
||||||
|
42
.github/workflows/samples-dotnet-fx.yaml
vendored
Normal file
42
.github/workflows/samples-dotnet-fx.yaml
vendored
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
name: Samples C# .Net Framework Clients
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.7/**
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.8/**
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.7/**
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.8/**
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build .Net projects
|
||||||
|
runs-on: windows-2019
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
sample:
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.7/AllOf
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.7/AnyOf
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.7/AnyOfNoCompare
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.7/FormModels
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.7/OneOf
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.7/Petstore
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.7/UseDateTimeForDate
|
||||||
|
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.8/AllOf
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.8/AnyOf
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.8/AnyOfNoCompare
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.8/FormModels
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.8/OneOf
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.8/Petstore
|
||||||
|
- samples/client/petstore/csharp/generichost/net4.8/UseDateTimeForDate
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Build
|
||||||
|
working-directory: ${{ matrix.sample }}
|
||||||
|
run: dotnet build Org.OpenAPITools.sln
|
||||||
|
- name: Test
|
||||||
|
working-directory: ${{ matrix.sample }}
|
||||||
|
run: dotnet test Org.OpenAPITools.sln
|
@ -28,7 +28,7 @@ jobs:
|
|||||||
# - samples/client/petstore/csharp/unityWebRequest/standard2.0/Petstore/
|
# - samples/client/petstore/csharp/unityWebRequest/standard2.0/Petstore/
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-dotnet@v4.0.0
|
- uses: actions/setup-dotnet@v4.0.1
|
||||||
with:
|
with:
|
||||||
dotnet-version: 3.1.*
|
dotnet-version: 3.1.*
|
||||||
- name: Build
|
- name: Build
|
||||||
|
2
.github/workflows/samples-dotnet.yaml
vendored
2
.github/workflows/samples-dotnet.yaml
vendored
@ -34,7 +34,7 @@ jobs:
|
|||||||
- samples/client/petstore/csharp/generichost/net8/UseDateTimeForDate
|
- samples/client/petstore/csharp/generichost/net8/UseDateTimeForDate
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-dotnet@v4.0.0
|
- uses: actions/setup-dotnet@v4.0.1
|
||||||
with:
|
with:
|
||||||
dotnet-version: '8.0.x'
|
dotnet-version: '8.0.x'
|
||||||
- name: Build
|
- name: Build
|
||||||
|
@ -19,7 +19,7 @@ jobs:
|
|||||||
- samples/client/echo_api/csharp-restsharp/
|
- samples/client/echo_api/csharp-restsharp/
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-dotnet@v4.0.0
|
- uses: actions/setup-dotnet@v4.0.1
|
||||||
with:
|
with:
|
||||||
dotnet-version: '6.0.x'
|
dotnet-version: '6.0.x'
|
||||||
- name: Run echo server
|
- name: Run echo server
|
||||||
|
@ -18,7 +18,7 @@ jobs:
|
|||||||
- samples/client/petstore/csharp/restsharp/net6/ParameterMappings/
|
- samples/client/petstore/csharp/restsharp/net6/ParameterMappings/
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-dotnet@v4.0.0
|
- uses: actions/setup-dotnet@v4.0.1
|
||||||
with:
|
with:
|
||||||
dotnet-version: '6.0.x'
|
dotnet-version: '6.0.x'
|
||||||
- name: Build
|
- name: Build
|
||||||
|
@ -25,7 +25,7 @@ jobs:
|
|||||||
- samples/server/petstore/aspnetcore-6.0-useSwashBuckle
|
- samples/server/petstore/aspnetcore-6.0-useSwashBuckle
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-dotnet@v4.0.0
|
- uses: actions/setup-dotnet@v4.0.1
|
||||||
with:
|
with:
|
||||||
dotnet-version: '6.0.x'
|
dotnet-version: '6.0.x'
|
||||||
- name: Build
|
- name: Build
|
||||||
|
36
.github/workflows/samples-dotnet8-server.yaml
vendored
Normal file
36
.github/workflows/samples-dotnet8-server.yaml
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
name: Samples C# .Net 8 Server
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- samples/server/petstore/aspnetcore-8.0/**
|
||||||
|
- samples/server/petstore/aspnetcore-8.0-*/**
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- samples/server/petstore/aspnetcore-8.0/**
|
||||||
|
- samples/server/petstore/aspnetcore-8.0-*/**
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build .Net 8 servers
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
sample:
|
||||||
|
- samples/server/petstore/aspnetcore-8.0
|
||||||
|
- samples/server/petstore/aspnetcore-8.0-NewtonsoftFalse
|
||||||
|
- samples/server/petstore/aspnetcore-8.0-nullableReferenceTypes
|
||||||
|
- samples/server/petstore/aspnetcore-8.0-pocoModels
|
||||||
|
- samples/server/petstore/aspnetcore-8.0-project4Models
|
||||||
|
- samples/server/petstore/aspnetcore-8.0-useSwashBuckle
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-dotnet@v4.0.1
|
||||||
|
with:
|
||||||
|
dotnet-version: '8.0.x'
|
||||||
|
- name: Build
|
||||||
|
working-directory: ${{ matrix.sample }}
|
||||||
|
run: dotnet build Org.OpenAPITools.sln
|
||||||
|
- name: Test
|
||||||
|
working-directory: ${{ matrix.sample }}
|
||||||
|
run: dotnet test Org.OpenAPITools.sln
|
2
.github/workflows/samples-elm.yaml
vendored
2
.github/workflows/samples-elm.yaml
vendored
@ -22,7 +22,7 @@ jobs:
|
|||||||
- samples/openapi3/client/elm
|
- samples/openapi3/client/elm
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: jorelali/setup-elm@v5
|
- uses: jorelali/setup-elm@v6
|
||||||
with:
|
with:
|
||||||
elm-version: 0.19.1
|
elm-version: 0.19.1
|
||||||
- name: Build
|
- name: Build
|
||||||
|
3
.github/workflows/samples-haskell.yaml
vendored
3
.github/workflows/samples-haskell.yaml
vendored
@ -5,11 +5,13 @@ on:
|
|||||||
paths:
|
paths:
|
||||||
- samples/server/petstore/haskell-yesod/**
|
- samples/server/petstore/haskell-yesod/**
|
||||||
- samples/server/petstore/haskell-servant/**
|
- samples/server/petstore/haskell-servant/**
|
||||||
|
- samples/server/others/haskell-servant-ping/**
|
||||||
- samples/client/petstore/haskell-http-client/**
|
- samples/client/petstore/haskell-http-client/**
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- samples/server/petstore/haskell-yesod/**
|
- samples/server/petstore/haskell-yesod/**
|
||||||
- samples/server/petstore/haskell-servant/**
|
- samples/server/petstore/haskell-servant/**
|
||||||
|
- samples/server/others/haskell-servant-ping/**
|
||||||
- samples/client/petstore/haskell-http-client/**
|
- samples/client/petstore/haskell-http-client/**
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -22,6 +24,7 @@ jobs:
|
|||||||
# servers
|
# servers
|
||||||
- samples/server/petstore/haskell-yesod/
|
- samples/server/petstore/haskell-yesod/
|
||||||
- samples/server/petstore/haskell-servant/
|
- samples/server/petstore/haskell-servant/
|
||||||
|
- samples/server/others/haskell-servant-ping/
|
||||||
- samples/client/petstore/haskell-http-client/
|
- samples/client/petstore/haskell-http-client/
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
@ -43,4 +43,4 @@ jobs:
|
|||||||
(cd http-echo-server && npm install && npm start &)
|
(cd http-echo-server && npm install && npm start &)
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
@ -3,10 +3,10 @@ name: Java Client (Echo API) JDK17
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- samples/client/echo_api/java/restclient
|
- samples/client/echo_api/java/**
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- samples/client/echo_api/java/restclient
|
- samples/client/echo_api/java/**
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build Java Client JDK17
|
name: Build Java Client JDK17
|
||||||
@ -16,6 +16,11 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
sample:
|
sample:
|
||||||
# clients
|
# clients
|
||||||
|
- samples/client/echo_api/java/apache-httpclient
|
||||||
|
- samples/client/echo_api/java/native
|
||||||
|
- samples/client/echo_api/java/feign-gson
|
||||||
|
- samples/client/echo_api/java/resttemplate
|
||||||
|
- samples/client/echo_api/java/resteasy
|
||||||
- samples/client/echo_api/java/restclient
|
- samples/client/echo_api/java/restclient
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@ -39,4 +44,4 @@ jobs:
|
|||||||
(cd http-echo-server && npm install && npm start &)
|
(cd http-echo-server && npm install && npm start &)
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
@ -50,4 +50,4 @@ jobs:
|
|||||||
(cd http-echo-server && npm install && npm start &)
|
(cd http-echo-server && npm install && npm start &)
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
@ -97,4 +97,4 @@ jobs:
|
|||||||
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
@ -42,7 +42,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Build with Maven
|
- name: Build with Maven
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
|
||||||
- name: Cache gradle dependencies
|
- name: Cache gradle dependencies
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
|
@ -38,4 +38,4 @@ jobs:
|
|||||||
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
@ -36,4 +36,4 @@ jobs:
|
|||||||
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
@ -44,4 +44,4 @@ jobs:
|
|||||||
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
@ -3,8 +3,6 @@ name: Samples Java Server
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
# java-camel is tested locally for the time being
|
|
||||||
#- 'samples/server/petstore/java-camel/**'
|
|
||||||
- 'samples/server/petstore/java-vertx-web/**'
|
- 'samples/server/petstore/java-vertx-web/**'
|
||||||
- 'samples/server/petstore/java-inflector/**'
|
- 'samples/server/petstore/java-inflector/**'
|
||||||
- 'samples/server/petstore/java-pkmst/**'
|
- 'samples/server/petstore/java-pkmst/**'
|
||||||
@ -13,7 +11,6 @@ on:
|
|||||||
- 'samples/server/petstore/java-microprofile/**'
|
- 'samples/server/petstore/java-microprofile/**'
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
#- 'samples/server/petstore/java-camel/**'
|
|
||||||
- 'samples/server/petstore/java-vertx-web/**'
|
- 'samples/server/petstore/java-vertx-web/**'
|
||||||
- 'samples/server/petstore/java-inflector/**'
|
- 'samples/server/petstore/java-inflector/**'
|
||||||
- 'samples/server/petstore/java-pkmst/**'
|
- 'samples/server/petstore/java-pkmst/**'
|
||||||
@ -28,7 +25,6 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
sample:
|
sample:
|
||||||
# servers
|
# servers
|
||||||
#- samples/server/petstore/java-camel/
|
|
||||||
- samples/server/petstore/java-vertx-web/
|
- samples/server/petstore/java-vertx-web/
|
||||||
- samples/server/petstore/java-inflector/
|
- samples/server/petstore/java-inflector/
|
||||||
- samples/server/petstore/java-pkmst/
|
- samples/server/petstore/java-pkmst/
|
||||||
@ -50,4 +46,4 @@ jobs:
|
|||||||
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
2
.github/workflows/samples-java-wiremock.yaml
vendored
2
.github/workflows/samples-java-wiremock.yaml
vendored
@ -32,4 +32,4 @@ jobs:
|
|||||||
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
2
.github/workflows/samples-jaxrs-jdk11.yaml
vendored
2
.github/workflows/samples-jaxrs-jdk11.yaml
vendored
@ -33,4 +33,4 @@ jobs:
|
|||||||
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
2
.github/workflows/samples-jaxrs.yaml
vendored
2
.github/workflows/samples-jaxrs.yaml
vendored
@ -53,4 +53,4 @@ jobs:
|
|||||||
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
8
.github/workflows/samples-jdk17.yaml
vendored
8
.github/workflows/samples-jdk17.yaml
vendored
@ -9,8 +9,10 @@ on:
|
|||||||
- samples/client/petstore/spring-http-interface-reactive/**
|
- samples/client/petstore/spring-http-interface-reactive/**
|
||||||
- samples/client/petstore/spring-http-interface/**
|
- samples/client/petstore/spring-http-interface/**
|
||||||
- samples/client/petstore/java/webclient-jakarta/**
|
- samples/client/petstore/java/webclient-jakarta/**
|
||||||
|
- samples/client/petstore/java/microprofile-rest-client-outer-enum/**
|
||||||
# servers
|
# servers
|
||||||
- samples/openapi3/server/petstore/springboot-3/**
|
- samples/openapi3/server/petstore/springboot-3/**
|
||||||
|
- samples/server/petstore/java-camel/**
|
||||||
- samples/server/petstore/java-helidon-server/v3/mp/**
|
- samples/server/petstore/java-helidon-server/v3/mp/**
|
||||||
- samples/server/petstore/java-helidon-server/v3/se/**
|
- samples/server/petstore/java-helidon-server/v3/se/**
|
||||||
pull_request:
|
pull_request:
|
||||||
@ -22,8 +24,10 @@ on:
|
|||||||
- samples/client/petstore/spring-http-interface-reactive/**
|
- samples/client/petstore/spring-http-interface-reactive/**
|
||||||
- samples/client/petstore/spring-http-interface/**
|
- samples/client/petstore/spring-http-interface/**
|
||||||
- samples/client/petstore/java/webclient-jakarta/**
|
- samples/client/petstore/java/webclient-jakarta/**
|
||||||
|
- samples/client/petstore/java/microprofile-rest-client-outer-enum/**
|
||||||
# servers
|
# servers
|
||||||
- samples/openapi3/server/petstore/springboot-3/**
|
- samples/openapi3/server/petstore/springboot-3/**
|
||||||
|
- samples/server/petstore/java-camel/**
|
||||||
- samples/server/petstore/java-helidon-server/v3/mp/**
|
- samples/server/petstore/java-helidon-server/v3/mp/**
|
||||||
- samples/server/petstore/java-helidon-server/v3/se/**
|
- samples/server/petstore/java-helidon-server/v3/se/**
|
||||||
jobs:
|
jobs:
|
||||||
@ -41,8 +45,10 @@ jobs:
|
|||||||
- samples/client/petstore/spring-http-interface-reactive
|
- samples/client/petstore/spring-http-interface-reactive
|
||||||
- samples/client/petstore/spring-http-interface
|
- samples/client/petstore/spring-http-interface
|
||||||
- samples/client/petstore/java/webclient-jakarta
|
- samples/client/petstore/java/webclient-jakarta
|
||||||
|
- samples/client/petstore/java/microprofile-rest-client-outer-enum
|
||||||
# servers
|
# servers
|
||||||
- samples/openapi3/server/petstore/springboot-3
|
- samples/openapi3/server/petstore/springboot-3
|
||||||
|
- samples/server/petstore/java-camel/
|
||||||
- samples/server/petstore/java-helidon-server/v3/mp/
|
- samples/server/petstore/java-helidon-server/v3/mp/
|
||||||
- samples/server/petstore/java-helidon-server/v3/se
|
- samples/server/petstore/java-helidon-server/v3/se
|
||||||
- samples/client/petstore/spring-http-interface-reactive
|
- samples/client/petstore/spring-http-interface-reactive
|
||||||
@ -63,4 +69,4 @@ jobs:
|
|||||||
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
2
.github/workflows/samples-jdk21.yaml
vendored
2
.github/workflows/samples-jdk21.yaml
vendored
@ -40,4 +40,4 @@ jobs:
|
|||||||
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
2
.github/workflows/samples-julia.yaml
vendored
2
.github/workflows/samples-julia.yaml
vendored
@ -30,7 +30,7 @@ jobs:
|
|||||||
# Using develop mode to install package so that it is easier to modify the package test files
|
# Using develop mode to install package so that it is easier to modify the package test files
|
||||||
julia -e "using Pkg; Pkg.develop(\"OpenAPI\");"
|
julia -e "using Pkg; Pkg.develop(\"OpenAPI\");"
|
||||||
cd ~/.julia/dev/OpenAPI
|
cd ~/.julia/dev/OpenAPI
|
||||||
git checkout v0.1.14
|
git checkout v0.1.25
|
||||||
cd $currdir
|
cd $currdir
|
||||||
rm -rf ~/.julia/dev/OpenAPI/test/client/openapigenerator_petstore_v3/petstore
|
rm -rf ~/.julia/dev/OpenAPI/test/client/openapigenerator_petstore_v3/petstore
|
||||||
rm -rf ~/.julia/dev/OpenAPI/test/server/openapigenerator_petstore_v3/petstore
|
rm -rf ~/.julia/dev/OpenAPI/test/server/openapigenerator_petstore_v3/petstore
|
||||||
|
@ -1,16 +1,18 @@
|
|||||||
name: Samples Kotlin server
|
name: Samples Kotlin server (jdk17)
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- 'samples/server/petstore/kotlin-springboot-3*/**'
|
- 'samples/server/petstore/kotlin-springboot-3*/**'
|
||||||
- 'samples/server/petstore/kotlin-server/javalin/**'
|
- 'samples/server/petstore/kotlin-server/javalin/**'
|
||||||
|
- 'samples/server/petstore/kotlin-server/javalin-6/**'
|
||||||
# comment out due to gradle build failure
|
# comment out due to gradle build failure
|
||||||
# - samples/server/petstore/kotlin-spring-default/**
|
# - samples/server/petstore/kotlin-spring-default/**
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- 'samples/server/petstore/kotlin-springboot-3*/**'
|
- 'samples/server/petstore/kotlin-springboot-3*/**'
|
||||||
- 'samples/server/petstore/kotlin-server/javalin/**'
|
- 'samples/server/petstore/kotlin-server/javalin/**'
|
||||||
|
- 'samples/server/petstore/kotlin-server/javalin-6/**'
|
||||||
# comment out due to gradle build failure
|
# comment out due to gradle build failure
|
||||||
# - samples/server/petstore/kotlin-spring-default/**
|
# - samples/server/petstore/kotlin-spring-default/**
|
||||||
|
|
||||||
@ -27,8 +29,11 @@ jobs:
|
|||||||
sample:
|
sample:
|
||||||
# server
|
# server
|
||||||
- samples/server/petstore/kotlin-springboot-3
|
- samples/server/petstore/kotlin-springboot-3
|
||||||
|
- samples/server/petstore/kotlin-springboot-delegate-nodefaults
|
||||||
- samples/server/petstore/kotlin-springboot-request
|
- samples/server/petstore/kotlin-springboot-request
|
||||||
|
- samples/server/petstore/kotlin-springboot-request-cookie
|
||||||
- samples/server/petstore/kotlin-server/javalin
|
- samples/server/petstore/kotlin-server/javalin
|
||||||
|
- samples/server/petstore/kotlin-server/javalin-6
|
||||||
# comment out due to gradle build failure
|
# comment out due to gradle build failure
|
||||||
# - samples/server/petstore/kotlin-spring-default/
|
# - samples/server/petstore/kotlin-spring-default/
|
||||||
steps:
|
steps:
|
||||||
|
45
.github/workflows/samples-kotlin-server-jdk21.yaml
vendored
Normal file
45
.github/workflows/samples-kotlin-server-jdk21.yaml
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
name: Samples Kotlin server (jdk21)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'samples/server/petstore/kotlin-server/javalin-6/**'
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- 'samples/server/petstore/kotlin-server/javalin-6/**'
|
||||||
|
|
||||||
|
env:
|
||||||
|
GRADLE_VERSION: 8.8
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build Kotlin server
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
sample:
|
||||||
|
- samples/server/petstore/kotlin-server/javalin-6
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
distribution: 'temurin'
|
||||||
|
java-version: 21
|
||||||
|
- name: Cache maven dependencies
|
||||||
|
uses: actions/cache@v4
|
||||||
|
env:
|
||||||
|
cache-name: maven-repository
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.gradle
|
||||||
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
||||||
|
- name: Install Gradle wrapper
|
||||||
|
uses: eskatos/gradle-command-action@v3
|
||||||
|
with:
|
||||||
|
gradle-version: ${{ env.GRADLE_VERSION }}
|
||||||
|
build-root-directory: ${{ matrix.sample }}
|
||||||
|
arguments: wrapper
|
||||||
|
- name: Build
|
||||||
|
working-directory: ${{ matrix.sample }}
|
||||||
|
run: ./gradlew build -x test
|
1
.github/workflows/samples-kotlin-server.yaml
vendored
1
.github/workflows/samples-kotlin-server.yaml
vendored
@ -29,6 +29,7 @@ jobs:
|
|||||||
sample:
|
sample:
|
||||||
# server
|
# server
|
||||||
- samples/server/petstore/kotlin-springboot
|
- samples/server/petstore/kotlin-springboot
|
||||||
|
- samples/server/petstore/kotlin-springboot-multipart-request-model
|
||||||
- samples/server/petstore/kotlin-springboot-bigdecimal-default
|
- samples/server/petstore/kotlin-springboot-bigdecimal-default
|
||||||
- samples/server/petstore/kotlin-springboot-delegate
|
- samples/server/petstore/kotlin-springboot-delegate
|
||||||
- samples/server/petstore/kotlin-springboot-modelMutable
|
- samples/server/petstore/kotlin-springboot-modelMutable
|
||||||
|
@ -4,6 +4,7 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- samples/client/echo_api/python/**
|
- samples/client/echo_api/python/**
|
||||||
|
- samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/**
|
||||||
- .github/workflows/samples-python-client-echo-api.yaml
|
- .github/workflows/samples-python-client-echo-api.yaml
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -17,11 +18,11 @@ jobs:
|
|||||||
- samples/client/echo_api/python
|
- samples/client/echo_api/python
|
||||||
- samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent
|
- samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent
|
||||||
python-version:
|
python-version:
|
||||||
- "3.7"
|
|
||||||
- "3.8"
|
- "3.8"
|
||||||
- "3.9"
|
- "3.9"
|
||||||
- "3.10"
|
- "3.10"
|
||||||
- "3.11"
|
- "3.11"
|
||||||
|
- "3.12"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-python@v5
|
- uses: actions/setup-python@v5
|
||||||
@ -41,7 +42,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: python -m pytest
|
run: python -m unittest discover
|
||||||
|
|
||||||
- name: mypy
|
- name: mypy
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
|
@ -15,7 +15,6 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version:
|
python-version:
|
||||||
- "3.7"
|
|
||||||
- "3.8"
|
- "3.8"
|
||||||
- "3.9"
|
- "3.9"
|
||||||
- "3.10"
|
- "3.10"
|
||||||
|
@ -15,7 +15,6 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version:
|
python-version:
|
||||||
- "3.7"
|
|
||||||
- "3.8"
|
- "3.8"
|
||||||
- "3.9"
|
- "3.9"
|
||||||
- "3.10"
|
- "3.10"
|
||||||
|
10
.github/workflows/samples-spring-jdk17.yaml
vendored
10
.github/workflows/samples-spring-jdk17.yaml
vendored
@ -4,11 +4,17 @@ on:
|
|||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- samples/openapi3/client/petstore/spring-cloud-3-with-optional
|
- samples/openapi3/client/petstore/spring-cloud-3-with-optional
|
||||||
|
- samples/openapi3/server/petstore/springboot-3
|
||||||
|
- samples/server/petstore/springboot-lombok-data
|
||||||
|
- samples/server/petstore/springboot-lombok-tostring
|
||||||
|
- samples/server/petstore/springboot-file-delegate-optional
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- samples/openapi3/client/petstore/spring-cloud-3-with-optional
|
- samples/openapi3/client/petstore/spring-cloud-3-with-optional
|
||||||
|
- samples/openapi3/server/petstore/springboot-3
|
||||||
- samples/server/petstore/springboot-lombok-data
|
- samples/server/petstore/springboot-lombok-data
|
||||||
- samples/server/petstore/springboot-lombok-tostring
|
- samples/server/petstore/springboot-lombok-tostring
|
||||||
|
- samples/server/petstore/springboot-file-delegate-optional
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build Java Spring (JDK17)
|
name: Build Java Spring (JDK17)
|
||||||
@ -20,8 +26,10 @@ jobs:
|
|||||||
# clients
|
# clients
|
||||||
- samples/openapi3/client/petstore/spring-cloud-3-with-optional
|
- samples/openapi3/client/petstore/spring-cloud-3-with-optional
|
||||||
# servers
|
# servers
|
||||||
|
- samples/openapi3/server/petstore/springboot-3
|
||||||
- samples/server/petstore/springboot-lombok-data
|
- samples/server/petstore/springboot-lombok-data
|
||||||
- samples/server/petstore/springboot-lombok-tostring
|
- samples/server/petstore/springboot-lombok-tostring
|
||||||
|
- samples/server/petstore/springboot-file-delegate-optional
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-java@v4
|
- uses: actions/setup-java@v4
|
||||||
@ -38,4 +46,4 @@ jobs:
|
|||||||
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
36
.github/workflows/samples-spring.yaml
vendored
36
.github/workflows/samples-spring.yaml
vendored
@ -25,40 +25,40 @@ jobs:
|
|||||||
sample:
|
sample:
|
||||||
# clients
|
# clients
|
||||||
- samples/client/petstore/spring-cloud
|
- samples/client/petstore/spring-cloud
|
||||||
- samples/openapi3/client/petstore/spring-cloud
|
- samples/client/petstore/spring-cloud-auth
|
||||||
- samples/client/petstore/spring-cloud-date-time
|
- samples/client/petstore/spring-cloud-date-time
|
||||||
|
- samples/client/petstore/spring-cloud-deprecated
|
||||||
|
- samples/client/petstore/spring-cloud-tags
|
||||||
|
- samples/openapi3/client/petstore/spring-cloud
|
||||||
|
- samples/openapi3/client/petstore/spring-cloud-async
|
||||||
- samples/openapi3/client/petstore/spring-cloud-date-time
|
- samples/openapi3/client/petstore/spring-cloud-date-time
|
||||||
- samples/openapi3/client/petstore/spring-cloud-http-basic
|
- samples/openapi3/client/petstore/spring-cloud-http-basic
|
||||||
|
- samples/openapi3/client/petstore/spring-cloud-spring-pageable
|
||||||
- samples/openapi3/client/petstore/spring-stubs
|
- samples/openapi3/client/petstore/spring-stubs
|
||||||
- samples/openapi3/client/petstore/spring-stubs-skip-default-interface
|
- samples/openapi3/client/petstore/spring-stubs-skip-default-interface
|
||||||
- samples/openapi3/client/petstore/spring-cloud-async
|
|
||||||
- samples/openapi3/client/petstore/spring-cloud-spring-pageable
|
|
||||||
- samples/client/petstore/spring-cloud-tags
|
|
||||||
- samples/client/petstore/spring-cloud-auth
|
|
||||||
- samples/client/petstore/spring-cloud-deprecated
|
|
||||||
# servers
|
# servers
|
||||||
- samples/server/petstore/springboot
|
|
||||||
- samples/openapi3/server/petstore/springboot
|
- samples/openapi3/server/petstore/springboot
|
||||||
- samples/server/petstore/springboot-beanvalidation
|
|
||||||
- samples/server/petstore/springboot-useoptional
|
|
||||||
- samples/server/petstore/springboot-reactive
|
|
||||||
- samples/server/petstore/springboot-reactive-noResponseEntity
|
|
||||||
- samples/server/petstore/springboot-implicitHeaders
|
|
||||||
- samples/openapi3/server/petstore/springboot-implicitHeaders
|
- samples/openapi3/server/petstore/springboot-implicitHeaders
|
||||||
- samples/server/petstore/springboot-delegate
|
|
||||||
- samples/server/petstore/springboot-delegate-no-response-entity
|
|
||||||
- samples/openapi3/server/petstore/springboot-delegate
|
- samples/openapi3/server/petstore/springboot-delegate
|
||||||
|
- samples/openapi3/server/petstore/spring-boot-oneof
|
||||||
- samples/server/petstore/spring-boot-nullable-set
|
- samples/server/petstore/spring-boot-nullable-set
|
||||||
- samples/server/petstore/spring-boot-defaultInterface-unhandledException
|
- samples/server/petstore/spring-boot-defaultInterface-unhandledException
|
||||||
- samples/openapi3/server/petstore/spring-boot-oneof
|
- samples/server/petstore/springboot
|
||||||
- samples/server/petstore/springboot-virtualan
|
- samples/server/petstore/springboot-beanvalidation
|
||||||
|
- samples/server/petstore/springboot-delegate
|
||||||
|
- samples/server/petstore/springboot-delegate-no-response-entity
|
||||||
|
- samples/server/petstore/springboot-implicitHeaders
|
||||||
- samples/server/petstore/springboot-implicitHeaders-annotationLibrary
|
- samples/server/petstore/springboot-implicitHeaders-annotationLibrary
|
||||||
|
- samples/server/petstore/springboot-lombok-data
|
||||||
|
- samples/server/petstore/springboot-reactive
|
||||||
|
- samples/server/petstore/springboot-reactive-noResponseEntity
|
||||||
- samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8
|
- samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8
|
||||||
- samples/server/petstore/springboot-spring-pageable-delegatePattern
|
- samples/server/petstore/springboot-spring-pageable-delegatePattern
|
||||||
- samples/server/petstore/springboot-spring-pageable-without-j8
|
- samples/server/petstore/springboot-spring-pageable-without-j8
|
||||||
- samples/server/petstore/springboot-spring-pageable
|
- samples/server/petstore/springboot-spring-pageable
|
||||||
- samples/server/petstore/springboot-spring-provide-args
|
- samples/server/petstore/springboot-spring-provide-args
|
||||||
- samples/server/petstore/springboot-lombok-data
|
- samples/server/petstore/springboot-useoptional
|
||||||
|
- samples/server/petstore/springboot-virtualan
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-java@v4
|
- uses: actions/setup-java@v4
|
||||||
@ -75,4 +75,4 @@ jobs:
|
|||||||
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{ matrix.sample }}
|
working-directory: ${{ matrix.sample }}
|
||||||
run: mvn clean package
|
run: mvn clean package --no-transfer-progress
|
||||||
|
2
.github/workflows/windows.yaml
vendored
2
.github/workflows/windows.yaml
vendored
@ -39,7 +39,7 @@ jobs:
|
|||||||
${{ runner.os }}-build-${{ env.cache-name }}-
|
${{ runner.os }}-build-${{ env.cache-name }}-
|
||||||
${{ runner.os }}-build-
|
${{ runner.os }}-build-
|
||||||
- name: Setup Maven
|
- name: Setup Maven
|
||||||
uses: s4u/setup-maven-action@v1.13.0
|
uses: s4u/setup-maven-action@v1.14.0
|
||||||
with:
|
with:
|
||||||
java-version: ${{ matrix.java }}
|
java-version: ${{ matrix.java }}
|
||||||
maven-version: 3.8.8
|
maven-version: 3.8.8
|
||||||
|
@ -39,11 +39,19 @@ elif [ "$NODE_INDEX" = "2" ]; then
|
|||||||
export PATH="/usr/local/go1.18/go/bin:$PATH"
|
export PATH="/usr/local/go1.18/go/bin:$PATH"
|
||||||
go version
|
go version
|
||||||
|
|
||||||
|
# install cpprestsdk
|
||||||
|
sudo apt-get install libcpprest-dev
|
||||||
|
wget "https://github.com/aminya/setup-cpp/releases/download/v0.37.0/setup-cpp-x64-linux"
|
||||||
|
chmod +x ./setup-cpp-x64-linux
|
||||||
|
sudo ./setup-cpp-x64-linux --compiler llvm --cmake true --ninja true
|
||||||
|
source ~/.cpprc # activate cpp environment variables
|
||||||
|
|
||||||
# run go integration tests
|
# run go integration tests
|
||||||
(cd samples/client/petstore/go && mvn integration-test)
|
(cd samples/client/petstore/go && mvn integration-test)
|
||||||
(cd samples/openapi3/client/petstore/go && mvn integration-test)
|
(cd samples/openapi3/client/petstore/go && mvn integration-test)
|
||||||
(cd samples/openapi3/client/petstore/go-petstore-generateMarshalJSON-false && mvn integration-test)
|
(cd samples/openapi3/client/petstore/go-petstore-generateMarshalJSON-false && mvn integration-test)
|
||||||
(cd samples/client/others/go/allof_multiple_ref_and_discriminator && mvn integration-test)
|
(cd samples/client/others/go/allof_multiple_ref_and_discriminator && mvn integration-test)
|
||||||
|
(cd samples/client/petstore/cpp-restsdk/client && mvn integration-test)
|
||||||
|
|
||||||
elif [ "$NODE_INDEX" = "3" ]; then
|
elif [ "$NODE_INDEX" = "3" ]; then
|
||||||
|
|
||||||
@ -71,6 +79,7 @@ elif [ "$NODE_INDEX" = "3" ]; then
|
|||||||
(cd samples/client/petstore/typescript-angular-v15-provided-in-root && mvn integration-test)
|
(cd samples/client/petstore/typescript-angular-v15-provided-in-root && mvn integration-test)
|
||||||
(cd samples/client/petstore/typescript-angular-v16-provided-in-root && mvn integration-test)
|
(cd samples/client/petstore/typescript-angular-v16-provided-in-root && mvn integration-test)
|
||||||
(cd samples/client/petstore/typescript-angular-v17-provided-in-root && mvn integration-test)
|
(cd samples/client/petstore/typescript-angular-v17-provided-in-root && mvn integration-test)
|
||||||
|
(cd samples/client/petstore/typescript-angular-v18-provided-in-root && mvn integration-test)
|
||||||
(cd samples/openapi3/client/petstore/typescript/builds/default && mvn integration-test)
|
(cd samples/openapi3/client/petstore/typescript/builds/default && mvn integration-test)
|
||||||
(cd samples/openapi3/client/petstore/typescript/tests/default && mvn integration-test)
|
(cd samples/openapi3/client/petstore/typescript/tests/default && mvn integration-test)
|
||||||
(cd samples/openapi3/client/petstore/typescript/builds/jquery && mvn integration-test)
|
(cd samples/openapi3/client/petstore/typescript/builds/jquery && mvn integration-test)
|
||||||
|
11
Dockerfile
11
Dockerfile
@ -10,6 +10,16 @@ COPY ./LICENSE ${GEN_DIR}
|
|||||||
# Required to compile openapi-generator
|
# Required to compile openapi-generator
|
||||||
COPY ./google_checkstyle.xml ${GEN_DIR}
|
COPY ./google_checkstyle.xml ${GEN_DIR}
|
||||||
|
|
||||||
|
# All poms are copied, then we go offline, to allow for better caching of code changes without fetching all dependencies each time
|
||||||
|
COPY ./modules/openapi-generator-gradle-plugin/pom.xml ${GEN_DIR}/modules/openapi-generator-gradle-plugin/
|
||||||
|
COPY ./modules/openapi-generator-maven-plugin/pom.xml ${GEN_DIR}/modules/openapi-generator-maven-plugin/
|
||||||
|
COPY ./modules/openapi-generator-online/pom.xml ${GEN_DIR}/modules/openapi-generator-online/
|
||||||
|
COPY ./modules/openapi-generator-cli/pom.xml ${GEN_DIR}/modules/openapi-generator-cli/
|
||||||
|
COPY ./modules/openapi-generator-core/pom.xml ${GEN_DIR}/modules/openapi-generator-core/
|
||||||
|
COPY ./modules/openapi-generator/pom.xml ${GEN_DIR}/modules/openapi-generator/
|
||||||
|
COPY ./pom.xml ${GEN_DIR}
|
||||||
|
RUN mvn dependency:go-offline
|
||||||
|
|
||||||
# Modules are copied individually here to allow for caching of docker layers between major.minor versions
|
# Modules are copied individually here to allow for caching of docker layers between major.minor versions
|
||||||
COPY ./modules/openapi-generator-gradle-plugin ${GEN_DIR}/modules/openapi-generator-gradle-plugin
|
COPY ./modules/openapi-generator-gradle-plugin ${GEN_DIR}/modules/openapi-generator-gradle-plugin
|
||||||
COPY ./modules/openapi-generator-maven-plugin ${GEN_DIR}/modules/openapi-generator-maven-plugin
|
COPY ./modules/openapi-generator-maven-plugin ${GEN_DIR}/modules/openapi-generator-maven-plugin
|
||||||
@ -17,7 +27,6 @@ COPY ./modules/openapi-generator-online ${GEN_DIR}/modules/openapi-generator-onl
|
|||||||
COPY ./modules/openapi-generator-cli ${GEN_DIR}/modules/openapi-generator-cli
|
COPY ./modules/openapi-generator-cli ${GEN_DIR}/modules/openapi-generator-cli
|
||||||
COPY ./modules/openapi-generator-core ${GEN_DIR}/modules/openapi-generator-core
|
COPY ./modules/openapi-generator-core ${GEN_DIR}/modules/openapi-generator-core
|
||||||
COPY ./modules/openapi-generator ${GEN_DIR}/modules/openapi-generator
|
COPY ./modules/openapi-generator ${GEN_DIR}/modules/openapi-generator
|
||||||
COPY ./pom.xml ${GEN_DIR}
|
|
||||||
|
|
||||||
# Pre-compile openapi-generator-cli
|
# Pre-compile openapi-generator-cli
|
||||||
RUN mvn -B -am -pl "modules/openapi-generator-cli" package
|
RUN mvn -B -am -pl "modules/openapi-generator-cli" package
|
||||||
|
21
README.md
21
README.md
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`7.7.0`):
|
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`7.8.0`):
|
||||||
[](https://app.travis-ci.com/github/OpenAPITools/openapi-generator/builds)
|
[](https://app.travis-ci.com/github/OpenAPITools/openapi-generator/builds)
|
||||||
[](https://circleci.com/gh/OpenAPITools/openapi-generator)
|
[](https://circleci.com/gh/OpenAPITools/openapi-generator)
|
||||||
[](https://ci.appveyor.com/project/WilliamCheng/openapi-generator)
|
[](https://ci.appveyor.com/project/WilliamCheng/openapi-generator)
|
||||||
@ -70,6 +70,7 @@ If you find OpenAPI Generator useful for work, please consider asking your compa
|
|||||||
[<img src="https://openapi-generator.tech/img/companies/litslink.png" width="128" height="128">](https://litslink.com/services/artificial-intelligence?utm_source=openapi-generator&utm_medium=sponsorship&utm_campaign=oss-sponsorship)
|
[<img src="https://openapi-generator.tech/img/companies/litslink.png" width="128" height="128">](https://litslink.com/services/artificial-intelligence?utm_source=openapi-generator&utm_medium=sponsorship&utm_campaign=oss-sponsorship)
|
||||||
[<img src="https://openapi-generator.tech/img/companies/designli.jpg" width="128" height="128">](https://designli.co?utm_source=openapi-generator&utm_medium=sponsorship&utm_campaign=oss-sponsorship)
|
[<img src="https://openapi-generator.tech/img/companies/designli.jpg" width="128" height="128">](https://designli.co?utm_source=openapi-generator&utm_medium=sponsorship&utm_campaign=oss-sponsorship)
|
||||||
[<img src="https://openapi-generator.tech/img/companies/itm.png" width="128" height="128">](https://opensource.muenchen.de?utm_source=openapi-generator&utm_medium=sponsorship&utm_campaign=oss-sponsorship)
|
[<img src="https://openapi-generator.tech/img/companies/itm.png" width="128" height="128">](https://opensource.muenchen.de?utm_source=openapi-generator&utm_medium=sponsorship&utm_campaign=oss-sponsorship)
|
||||||
|
[<img src="https://openapi-generator.tech/img/companies/kong.png" width="128" height="128">](https://konghq.com/products/kong-konnect?utm_medium=referral&utm_source=github&utm_campaign=platform&utm_content=openapi-generator)
|
||||||
|
|
||||||
|
|
||||||
#### Thank you GoDaddy for sponsoring the domain names, Linode for sponsoring the VPS, Checkly for sponsoring the API monitoring and Gradle for sponsoring Develocity
|
#### Thank you GoDaddy for sponsoring the domain names, Linode for sponsoring the VPS, Checkly for sponsoring the API monitoring and Gradle for sponsoring Develocity
|
||||||
@ -84,8 +85,8 @@ If you find OpenAPI Generator useful for work, please consider asking your compa
|
|||||||
OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an [OpenAPI Spec](https://github.com/OAI/OpenAPI-Specification) (both 2.0 and 3.0 are supported). Currently, the following languages/frameworks are supported:
|
OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an [OpenAPI Spec](https://github.com/OAI/OpenAPI-Specification) (both 2.0 and 3.0 are supported). Currently, the following languages/frameworks are supported:
|
||||||
|
|
||||||
| | Languages/Frameworks |
|
| | Languages/Frameworks |
|
||||||
| -------------------------------- |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
| -------------------------------- |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **API clients** | **ActionScript**, **Ada**, **Apex**, **Bash**, **C**, **C#** (.net 2.0, 3.5 or later, .NET Standard 1.3 - 2.1, .NET Core 3.1, .NET 5.0. Libraries: RestSharp, GenericHost, HttpClient), **C++** (Arduino, cpp-restsdk, Qt5, Tizen, Unreal Engine 4), **Clojure**, **Crystal**, **Dart**, **Elixir**, **Elm**, **Eiffel**, **Erlang**, **Go**, **Groovy**, **Haskell** (http-client, Servant), **Java** (Apache HttpClient 4.x, Apache HttpClient 5.x, Jersey2.x, OkHttp, Retrofit1.x, Retrofit2.x, Feign, RestTemplate, RESTEasy, Vertx, Google API Client Library for Java, Rest-assured, Spring 5 Web Client, MicroProfile Rest Client, Helidon), **Jetbrains HTTP Client**, **Julia**, **k6**, **Kotlin**, **Lua**, **N4JS**, **Nim**, **Node.js/JavaScript** (ES5, ES6, AngularJS with Google Closure Compiler annotations, Flow types, Apollo GraphQL DataStore), **Objective-C**, **OCaml**, **Perl**, **PHP**, **PowerShell**, **Python**, **R**, **Ruby**, **Rust** (hyper, reqwest, rust-server), **Scala** (akka, http4s, scalaz, sttp, swagger-async-httpclient, pekko), **Swift** (2.x, 3.x, 4.x, 5.x), **Typescript** (AngularJS, Angular (9.x - 17.x), Aurelia, Axios, Fetch, Inversify, jQuery, Nestjs, Node, redux-query, Rxjs), **XoJo**, **Zapier** |
|
| **API clients** | **ActionScript**, **Ada**, **Apex**, **Bash**, **C**, **C#** (.net 2.0, 3.5 or later, .NET Standard 1.3 - 2.1, .NET Core 3.1, .NET 5.0. Libraries: RestSharp, GenericHost, HttpClient), **C++** (Arduino, cpp-restsdk, Qt5, Tizen, Unreal Engine 4), **Clojure**, **Crystal**, **Dart**, **Elixir**, **Elm**, **Eiffel**, **Erlang**, **Go**, **Groovy**, **Haskell** (http-client, Servant), **Java** (Apache HttpClient 4.x, Apache HttpClient 5.x, Jersey2.x, OkHttp, Retrofit1.x, Retrofit2.x, Feign, RestTemplate, RESTEasy, Vertx, Google API Client Library for Java, Rest-assured, Spring 5 Web Client, Spring 6 RestClient, MicroProfile Rest Client, Helidon), **Jetbrains HTTP Client**, **Julia**, **k6**, **Kotlin**, **Lua**, **N4JS**, **Nim**, **Node.js/JavaScript** (ES5, ES6, AngularJS with Google Closure Compiler annotations, Flow types, Apollo GraphQL DataStore), **Objective-C**, **OCaml**, **Perl**, **PHP**, **PowerShell**, **Python**, **R**, **Ruby**, **Rust** (hyper, reqwest, rust-server), **Scala** (akka, http4s, scalaz, sttp, swagger-async-httpclient, pekko), **Swift** (2.x, 3.x, 4.x, 5.x), **Typescript** (AngularJS, Angular (9.x - 18.x), Aurelia, Axios, Fetch, Inversify, jQuery, Nestjs, Node, redux-query, Rxjs), **XoJo**, **Zapier** |
|
||||||
| **Server stubs** | **Ada**, **C#** (ASP.NET Core, Azure Functions), **C++** (Pistache, Restbed, Qt5 QHTTPEngine), **Erlang**, **F#** (Giraffe), **Go** (net/http, Gin, Echo), **Haskell** (Servant, Yesod), **Java** (MSF4J, Spring, Undertow, JAX-RS: CDI, CXF, Inflector, Jersey, RestEasy, Play Framework, [PKMST](https://github.com/ProKarma-Inc/pkmst-getting-started-examples), [Vert.x](https://vertx.io/), [Apache Camel](https://camel.apache.org/), [Helidon](https://helidon.io/)), **Julia**, **Kotlin** (Spring Boot, [Ktor](https://github.com/ktorio/ktor), [Vert.x](https://vertx.io/)), **PHP** ([Flight](https://docs.flightphp.com/), Laravel, Lumen, [Mezzio (fka Zend Expressive)](https://github.com/mezzio/mezzio), Slim, Silex, [Symfony](https://symfony.com/)), **Python** (FastAPI, Flask), **NodeJS**, **Ruby** (Sinatra, Rails5), **Rust** ([rust-server](https://openapi-generator.tech/docs/generators/rust-server/)), **Scala** (Akka, [Finch](https://github.com/finagle/finch), [Lagom](https://github.com/lagom/lagom), [Play](https://www.playframework.com/), [Cask](https://github.com/com-lihaoyi/cask), Scalatra) |
|
| **Server stubs** | **Ada**, **C#** (ASP.NET Core, Azure Functions), **C++** (Pistache, Restbed, Qt5 QHTTPEngine), **Erlang**, **F#** (Giraffe), **Go** (net/http, Gin, Echo), **Haskell** (Servant, Yesod), **Java** (MSF4J, Spring, Undertow, JAX-RS: CDI, CXF, Inflector, Jersey, RestEasy, Play Framework, [PKMST](https://github.com/ProKarma-Inc/pkmst-getting-started-examples), [Vert.x](https://vertx.io/), [Apache Camel](https://camel.apache.org/), [Helidon](https://helidon.io/)), **Julia**, **Kotlin** (Spring Boot, [Ktor](https://github.com/ktorio/ktor), [Vert.x](https://vertx.io/)), **PHP** ([Flight](https://docs.flightphp.com/), Laravel, Lumen, [Mezzio (fka Zend Expressive)](https://github.com/mezzio/mezzio), Slim, Silex, [Symfony](https://symfony.com/)), **Python** (FastAPI, Flask), **NodeJS**, **Ruby** (Sinatra, Rails5), **Rust** ([rust-server](https://openapi-generator.tech/docs/generators/rust-server/)), **Scala** (Akka, [Finch](https://github.com/finagle/finch), [Lagom](https://github.com/lagom/lagom), [Play](https://www.playframework.com/), [Cask](https://github.com/com-lihaoyi/cask), Scalatra) |
|
||||||
| **API documentation generators** | **HTML**, **Confluence Wiki**, **Asciidoc**, **Markdown**, **PlantUML** |
|
| **API documentation generators** | **HTML**, **Confluence Wiki**, **Asciidoc**, **Markdown**, **PlantUML** |
|
||||||
| **Configuration files** | [**Apache2**](https://httpd.apache.org/) |
|
| **Configuration files** | [**Apache2**](https://httpd.apache.org/) |
|
||||||
@ -127,8 +128,8 @@ The OpenAPI Specification has undergone 3 revisions since initial creation in 20
|
|||||||
|
|
||||||
| OpenAPI Generator Version | Release Date | Notes |
|
| OpenAPI Generator Version | Release Date | Notes |
|
||||||
| --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ------------------------------------------------- |
|
| --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ------------------------------------------------- |
|
||||||
| 7.7.0 (upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/7.7.0-SNAPSHOT/) | 20.06.2024 | Minor release with breaking changes (with fallback) |
|
| 7.8.0 (upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/7.8.0-SNAPSHOT/) | 09.08.2024 | Minor release with breaking changes (with fallback) |
|
||||||
| [7.6.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.6.0) (latest stable release) | 20.05.2024 | Minor release with breaking changes (with fallback) |
|
| [7.7.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.7.0) (latest stable release) | 02.07.2024 | Minor release with breaking changes (with fallback) |
|
||||||
| [6.6.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v6.6.0) | 11.05.2023 | Minor release with breaking changes (with fallback) |
|
| [6.6.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v6.6.0) | 11.05.2023 | Minor release with breaking changes (with fallback) |
|
||||||
| [5.4.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.4.0) | 31.01.2022 | Minor release with breaking changes (with fallback) |
|
| [5.4.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.4.0) | 31.01.2022 | Minor release with breaking changes (with fallback) |
|
||||||
| [4.3.1](https://github.com/OpenAPITools/openapi-generator/releases/tag/v4.3.1) | 06.05.2020 | Patch release (enhancements, bug fixes, etc) |
|
| [4.3.1](https://github.com/OpenAPITools/openapi-generator/releases/tag/v4.3.1) | 06.05.2020 | Patch release (enhancements, bug fixes, etc) |
|
||||||
@ -191,16 +192,16 @@ See the different versions of the [openapi-generator-cli](https://search.maven.o
|
|||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 11 runtime at a minimum):
|
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 11 runtime at a minimum):
|
||||||
|
|
||||||
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.6.0/openapi-generator-cli-7.6.0.jar`
|
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.7.0/openapi-generator-cli-7.7.0.jar`
|
||||||
|
|
||||||
For **Mac/Linux** users:
|
For **Mac/Linux** users:
|
||||||
```sh
|
```sh
|
||||||
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.6.0/openapi-generator-cli-7.6.0.jar -O openapi-generator-cli.jar
|
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.7.0/openapi-generator-cli-7.7.0.jar -O openapi-generator-cli.jar
|
||||||
```
|
```
|
||||||
|
|
||||||
For **Windows** users, you will need to install [wget](http://gnuwin32.sourceforge.net/packages/wget.htm) or you can use Invoke-WebRequest in PowerShell (3.0+), e.g.
|
For **Windows** users, you will need to install [wget](http://gnuwin32.sourceforge.net/packages/wget.htm) or you can use Invoke-WebRequest in PowerShell (3.0+), e.g.
|
||||||
```
|
```
|
||||||
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.6.0/openapi-generator-cli-7.6.0.jar
|
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.7.0/openapi-generator-cli-7.7.0.jar
|
||||||
```
|
```
|
||||||
|
|
||||||
After downloading the JAR, run `java -jar openapi-generator-cli.jar help` to show the usage.
|
After downloading the JAR, run `java -jar openapi-generator-cli.jar help` to show the usage.
|
||||||
@ -598,6 +599,7 @@ Here is a list of community-contributed IDE plug-ins that integrate with OpenAPI
|
|||||||
Here are some companies/projects (alphabetical order) using OpenAPI Generator in production. To add your company/project to the list, please visit [README.md](README.md) and click on the icon to edit the page.
|
Here are some companies/projects (alphabetical order) using OpenAPI Generator in production. To add your company/project to the list, please visit [README.md](README.md) and click on the icon to edit the page.
|
||||||
|
|
||||||
- [Aalborg University](https://www.aau.dk)
|
- [Aalborg University](https://www.aau.dk)
|
||||||
|
- [act coding](https://github.com/actcoding)
|
||||||
- [Adaptant Solutions AG](https://www.adaptant.io/)
|
- [Adaptant Solutions AG](https://www.adaptant.io/)
|
||||||
- [adesso SE](https://www.adesso.de/)
|
- [adesso SE](https://www.adesso.de/)
|
||||||
- [Adyen](https://www.adyen.com/)
|
- [Adyen](https://www.adyen.com/)
|
||||||
@ -931,6 +933,7 @@ Here are some companies/projects (alphabetical order) using OpenAPI Generator in
|
|||||||
- 2023-06-28 - [Generate API contract using OpenAPI Generator Maven plugin](https://huongdanjava.com/generate-api-contract-using-openapi-generator-maven-plugin.html) by [Khanh Nguyen](https://huongdanjava.com/)
|
- 2023-06-28 - [Generate API contract using OpenAPI Generator Maven plugin](https://huongdanjava.com/generate-api-contract-using-openapi-generator-maven-plugin.html) by [Khanh Nguyen](https://huongdanjava.com/)
|
||||||
- 2023-06-30 - [Generate Client SDKs with OpenApi Generator in Springboot](https://medium.com/@ramavathvinayak/generate-client-sdks-with-openapi-generator-in-springboot-f9f012e73c0b) by [Vinayak Ramavath](https://medium.com/@ramavathvinayak)
|
- 2023-06-30 - [Generate Client SDKs with OpenApi Generator in Springboot](https://medium.com/@ramavathvinayak/generate-client-sdks-with-openapi-generator-in-springboot-f9f012e73c0b) by [Vinayak Ramavath](https://medium.com/@ramavathvinayak)
|
||||||
- 2023-12-10 - [UnityでOpenAPI Generatorを使う](https://www.youtube.com/watch?v=CbNwKVV5LRM) by [Soup Tori](https://www.youtube.com/@souptori8417)
|
- 2023-12-10 - [UnityでOpenAPI Generatorを使う](https://www.youtube.com/watch?v=CbNwKVV5LRM) by [Soup Tori](https://www.youtube.com/@souptori8417)
|
||||||
|
- 2024-01-24 - [Comment générer des stubs wiremock avec openapi generator](https://www.youtube.com/watch?v=0jhONfBrcKw) by [Alexis Couvreur](https://github.com/acouvreur)
|
||||||
- 2024-03-04 - [Generating TypeScript Types with OpenAPI for REST API Consumption](https://www.pullrequest.com/blog/generating-typescript-types-with-openapi-for-rest-api-consumption/) by [PullRequest](https://www.pullrequest.com/)
|
- 2024-03-04 - [Generating TypeScript Types with OpenAPI for REST API Consumption](https://www.pullrequest.com/blog/generating-typescript-types-with-openapi-for-rest-api-consumption/) by [PullRequest](https://www.pullrequest.com/)
|
||||||
- 2024-03-07 - [Fully typed Web Apps with OpenAPI (Part 1)](https://medium.com/@gfox1984/fully-typed-web-apps-with-openapi-part-1-595d55766670) by [Guillaume Renard](https://medium.com/@gfox1984)
|
- 2024-03-07 - [Fully typed Web Apps with OpenAPI (Part 1)](https://medium.com/@gfox1984/fully-typed-web-apps-with-openapi-part-1-595d55766670) by [Guillaume Renard](https://medium.com/@gfox1984)
|
||||||
- 2024-03-08 - [Laravel OpenAPIによる "辛くない" スキーマ駆動開発](https://fortee.jp/phperkaigi-2024/proposal/9e2e6c38-d078-4efa-99b4-83ebf9033b34) by [KentarouTakeda](https://twitter.com/KentarouTakeda)
|
- 2024-03-08 - [Laravel OpenAPIによる "辛くない" スキーマ駆動開発](https://fortee.jp/phperkaigi-2024/proposal/9e2e6c38-d078-4efa-99b4-83ebf9033b34) by [KentarouTakeda](https://twitter.com/KentarouTakeda)
|
||||||
@ -995,6 +998,7 @@ Here is a list of template creators:
|
|||||||
* Java (okhttp-gson): @xhh
|
* Java (okhttp-gson): @xhh
|
||||||
* Java (RestTemplate): @nbruno
|
* Java (RestTemplate): @nbruno
|
||||||
* Java (Spring 5 WebClient): @daonomic
|
* Java (Spring 5 WebClient): @daonomic
|
||||||
|
* Java (Spring 6 RestClient): @nicklas2751
|
||||||
* Java (RESTEasy): @gayathrigs
|
* Java (RESTEasy): @gayathrigs
|
||||||
* Java (Vertx): @lopesmcc
|
* Java (Vertx): @lopesmcc
|
||||||
* Java (Google APIs Client Library): @charlescapps
|
* Java (Google APIs Client Library): @charlescapps
|
||||||
@ -1083,6 +1087,7 @@ Here is a list of template creators:
|
|||||||
* Java Vert.x: @lwlee2608
|
* Java Vert.x: @lwlee2608
|
||||||
* Java Micronaut: @andriy-dmytruk
|
* Java Micronaut: @andriy-dmytruk
|
||||||
* Java Helidon: @spericas @tjquinno @tvallin
|
* Java Helidon: @spericas @tjquinno @tvallin
|
||||||
|
* Java WireMock: [@acouvreur](https://github.com/acouvreur)
|
||||||
* JAX-RS RestEasy: @chameleon82
|
* JAX-RS RestEasy: @chameleon82
|
||||||
* JAX-RS CXF: @hiveship
|
* JAX-RS CXF: @hiveship
|
||||||
* JAX-RS CXF (CDI): @nickcmaynard
|
* JAX-RS CXF (CDI): @nickcmaynard
|
||||||
|
17
appveyor.yml
17
appveyor.yml
@ -54,8 +54,25 @@ test_script:
|
|||||||
- dotnet test samples\client\petstore\csharp\generichost\net8\Petstore\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
- dotnet test samples\client\petstore\csharp\generichost\net8\Petstore\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
- dotnet test samples\client\petstore\csharp\generichost\net8\SourceGeneration\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
- dotnet test samples\client\petstore\csharp\generichost\net8\SourceGeneration\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
- dotnet test samples\client\petstore\csharp\generichost\net8\UseDateTimeForDate\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
- dotnet test samples\client\petstore\csharp\generichost\net8\UseDateTimeForDate\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
|
||||||
- dotnet test samples\client\petstore\csharp\generichost\standard2.0\Petstore\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
- dotnet test samples\client\petstore\csharp\generichost\standard2.0\Petstore\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
|
||||||
|
- dotnet test samples\client\petstore\csharp\generichost\net4.8\AllOf\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
- dotnet test samples\client\petstore\csharp\generichost\net4.8\AnyOf\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
- dotnet test samples\client\petstore\csharp\generichost\net4.8\AnyOfNoCompare\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
- dotnet test samples\client\petstore\csharp\generichost\net4.8\FormModels\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
- dotnet test samples\client\petstore\csharp\generichost\net4.8\OneOf\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
- dotnet test samples\client\petstore\csharp\generichost\net4.8\Petstore\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
- dotnet test samples\client\petstore\csharp\generichost\net4.8\UseDateTimeForDate\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
|
||||||
|
- dotnet test samples\client\petstore\csharp\generichost\net4.7\AllOf\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
- dotnet test samples\client\petstore\csharp\generichost\net4.7\AnyOf\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
- dotnet test samples\client\petstore\csharp\generichost\net4.7\AnyOfNoCompare\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
- dotnet test samples\client\petstore\csharp\generichost\net4.7\FormModels\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
- dotnet test samples\client\petstore\csharp\generichost\net4.7\OneOf\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
- dotnet test samples\client\petstore\csharp\generichost\net4.7\Petstore\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
- dotnet test samples\client\petstore\csharp\generichost\net4.7\UseDateTimeForDate\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
|
||||||
- dotnet test samples\client\petstore\csharp\httpclient\standard2.0\Petstore\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
- dotnet test samples\client\petstore\csharp\httpclient\standard2.0\Petstore\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
|
||||||
- dotnet test samples\client\petstore\csharp\restsharp\net4.7\MultipleFrameworks\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
- dotnet test samples\client\petstore\csharp\restsharp\net4.7\MultipleFrameworks\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj
|
||||||
|
9
bin/configs/aspnetcore-8.0-NewtonsoftFalse.yaml
Normal file
9
bin/configs/aspnetcore-8.0-NewtonsoftFalse.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
generatorName: aspnetcore
|
||||||
|
outputDir: samples/server/petstore/aspnetcore-8.0-NewtonsoftFalse
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/aspnetcore/petstore.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/aspnetcore/3.0
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{3C799344-F285-4669-8FD5-7ED9B795D5C5}'
|
||||||
|
aspnetCoreVersion: "8.0"
|
||||||
|
userSecretsGuid: 'cb87e868-8646-48ef-9bb6-344b537d0d37'
|
||||||
|
useNewtonsoft: false
|
9
bin/configs/aspnetcore-8.0-nullableReferenceTypes.yaml
Normal file
9
bin/configs/aspnetcore-8.0-nullableReferenceTypes.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
generatorName: aspnetcore
|
||||||
|
outputDir: samples/server/petstore/aspnetcore-8.0-nullableReferenceTypes
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/aspnetcore/petstore.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/aspnetcore/3.0
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{3C799344-F285-4669-8FD5-7ED9B795D5C5}'
|
||||||
|
aspnetCoreVersion: "8.0"
|
||||||
|
userSecretsGuid: 'cb87e868-8646-48ef-9bb6-344b537d0d37'
|
||||||
|
nullableReferenceTypes: true
|
9
bin/configs/aspnetcore-8.0-pocoModels.yaml
Normal file
9
bin/configs/aspnetcore-8.0-pocoModels.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
generatorName: aspnetcore
|
||||||
|
outputDir: samples/server/petstore/aspnetcore-8.0-pocoModels
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/aspnetcore/petstore.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/aspnetcore/3.0
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{3C799344-F285-4669-8FD5-7ED9B795D5C5}'
|
||||||
|
aspnetCoreVersion: "8.0"
|
||||||
|
userSecretsGuid: 'cb87e868-8646-48ef-9bb6-344b537d0d37'
|
||||||
|
pocoModels: true
|
9
bin/configs/aspnetcore-8.0-project4Models.yaml
Normal file
9
bin/configs/aspnetcore-8.0-project4Models.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
generatorName: aspnetcore
|
||||||
|
outputDir: samples/server/petstore/aspnetcore-8.0-project4Models
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/aspnetcore/petstore.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/aspnetcore/3.0
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{3C799344-F285-4669-8FD5-7ED9B795D5C5}'
|
||||||
|
aspnetCoreVersion: "8.0"
|
||||||
|
userSecretsGuid: 'cb87e868-8646-48ef-9bb6-344b537d0d37'
|
||||||
|
useSeparateModelProject: true
|
11
bin/configs/aspnetcore-8.0-useSwashBuckle.yaml
Normal file
11
bin/configs/aspnetcore-8.0-useSwashBuckle.yaml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
generatorName: aspnetcore
|
||||||
|
outputDir: samples/server/petstore/aspnetcore-8.0-useSwashBuckle
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/aspnetcore/petstore.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/aspnetcore/3.0
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{3C799344-F285-4669-8FD5-7ED9B795D5C5}'
|
||||||
|
aspnetCoreVersion: "8.0"
|
||||||
|
userSecretsGuid: 'cb87e868-8646-48ef-9bb6-344b537d0d37'
|
||||||
|
useSwashBuckle: false
|
||||||
|
buildTarget: library
|
||||||
|
isLibrary: true
|
8
bin/configs/aspnetcore-8.0.yaml
Normal file
8
bin/configs/aspnetcore-8.0.yaml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
generatorName: aspnetcore
|
||||||
|
outputDir: samples/server/petstore/aspnetcore-8.0
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/aspnetcore/petstore.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/aspnetcore/3.0
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{3C799344-F285-4669-8FD5-7ED9B795D5C5}'
|
||||||
|
aspnetCoreVersion: "8.0"
|
||||||
|
userSecretsGuid: 'cb87e868-8646-48ef-9bb6-344b537d0d37'
|
13
bin/configs/csharp-generichost-net4.7-allOf.yaml
Normal file
13
bin/configs/csharp-generichost-net4.7-allOf.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# for csharp generichost
|
||||||
|
generatorName: csharp
|
||||||
|
outputDir: samples/client/petstore/csharp/generichost/net4.7/AllOf
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/allOf.yaml
|
||||||
|
library: generichost
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'
|
||||||
|
useCompareNetObjects: true
|
||||||
|
disallowAdditionalPropertiesIfNotPresent: false
|
||||||
|
nullableReferenceTypes: false
|
||||||
|
equatable: true
|
||||||
|
targetFramework: net47
|
13
bin/configs/csharp-generichost-net4.7-anyOf.yaml
Normal file
13
bin/configs/csharp-generichost-net4.7-anyOf.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# for csharp generichost
|
||||||
|
generatorName: csharp
|
||||||
|
outputDir: samples/client/petstore/csharp/generichost/net4.7/AnyOf
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/anyOf.yaml
|
||||||
|
library: generichost
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'
|
||||||
|
useCompareNetObjects: true
|
||||||
|
disallowAdditionalPropertiesIfNotPresent: false
|
||||||
|
nullableReferenceTypes: false
|
||||||
|
equatable: true
|
||||||
|
targetFramework: net47
|
13
bin/configs/csharp-generichost-net4.7-anyOfNoCompare.yaml
Normal file
13
bin/configs/csharp-generichost-net4.7-anyOfNoCompare.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# for csharp generichost
|
||||||
|
generatorName: csharp
|
||||||
|
outputDir: samples/client/petstore/csharp/generichost/net4.7/AnyOfNoCompare
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/anyOf.yaml
|
||||||
|
library: generichost
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'
|
||||||
|
useCompareNetObjects: false
|
||||||
|
disallowAdditionalPropertiesIfNotPresent: false
|
||||||
|
nullableReferenceTypes: false
|
||||||
|
equatable: true
|
||||||
|
targetFramework: net47
|
17
bin/configs/csharp-generichost-net4.7-formModels.yaml
Normal file
17
bin/configs/csharp-generichost-net4.7-formModels.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# for csharp generichost
|
||||||
|
generatorName: csharp
|
||||||
|
outputDir: samples/client/petstore/csharp/generichost/net4.7/FormModels
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
|
||||||
|
library: generichost
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'
|
||||||
|
useCompareNetObjects: true
|
||||||
|
disallowAdditionalPropertiesIfNotPresent: false
|
||||||
|
nullableReferenceTypes: false
|
||||||
|
equatable: true
|
||||||
|
targetFramework: net47
|
||||||
|
skipFormModel: false
|
||||||
|
modelPropertySorting: alphabetical
|
||||||
|
inlineSchemaOptions:
|
||||||
|
RESOLVE_INLINE_ENUMS: true
|
13
bin/configs/csharp-generichost-net4.7-oneOf.yaml
Normal file
13
bin/configs/csharp-generichost-net4.7-oneOf.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# for csharp generichost
|
||||||
|
generatorName: csharp
|
||||||
|
outputDir: samples/client/petstore/csharp/generichost/net4.7/OneOf
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/oneOf.yaml
|
||||||
|
library: generichost
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'
|
||||||
|
useCompareNetObjects: true
|
||||||
|
disallowAdditionalPropertiesIfNotPresent: false
|
||||||
|
nullableReferenceTypes: false
|
||||||
|
equatable: true
|
||||||
|
targetFramework: net47
|
@ -0,0 +1,11 @@
|
|||||||
|
# for csharp generichost
|
||||||
|
generatorName: csharp
|
||||||
|
outputDir: samples/client/petstore/csharp/generichost/net4.7/UseDateTimeForDate
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/dates-api.yaml
|
||||||
|
library: generichost
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{2E60EF87-DB0B-4D01-A36E-F5E90F7EC757}'
|
||||||
|
useDateTimeForDate: true
|
||||||
|
targetFramework: net47
|
||||||
|
modelPropertySorting: alphabetical
|
14
bin/configs/csharp-generichost-net4.7.yaml
Normal file
14
bin/configs/csharp-generichost-net4.7.yaml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# for csharp generichost
|
||||||
|
generatorName: csharp
|
||||||
|
outputDir: samples/client/petstore/csharp/generichost/net4.7/Petstore
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
|
||||||
|
library: generichost
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'
|
||||||
|
useCompareNetObjects: true
|
||||||
|
disallowAdditionalPropertiesIfNotPresent: false
|
||||||
|
nullableReferenceTypes: false
|
||||||
|
equatable: true
|
||||||
|
targetFramework: net47
|
||||||
|
modelPropertySorting: alphabetical
|
13
bin/configs/csharp-generichost-net4.8-allOf.yaml
Normal file
13
bin/configs/csharp-generichost-net4.8-allOf.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# for csharp generichost
|
||||||
|
generatorName: csharp
|
||||||
|
outputDir: samples/client/petstore/csharp/generichost/net4.8/AllOf
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/allOf.yaml
|
||||||
|
library: generichost
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'
|
||||||
|
useCompareNetObjects: true
|
||||||
|
disallowAdditionalPropertiesIfNotPresent: false
|
||||||
|
nullableReferenceTypes: false
|
||||||
|
equatable: true
|
||||||
|
targetFramework: net48
|
13
bin/configs/csharp-generichost-net4.8-anyOf.yaml
Normal file
13
bin/configs/csharp-generichost-net4.8-anyOf.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# for csharp generichost
|
||||||
|
generatorName: csharp
|
||||||
|
outputDir: samples/client/petstore/csharp/generichost/net4.8/AnyOf
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/anyOf.yaml
|
||||||
|
library: generichost
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'
|
||||||
|
useCompareNetObjects: true
|
||||||
|
disallowAdditionalPropertiesIfNotPresent: false
|
||||||
|
nullableReferenceTypes: false
|
||||||
|
equatable: true
|
||||||
|
targetFramework: net48
|
13
bin/configs/csharp-generichost-net4.8-anyOfNoCompare.yaml
Normal file
13
bin/configs/csharp-generichost-net4.8-anyOfNoCompare.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# for csharp generichost
|
||||||
|
generatorName: csharp
|
||||||
|
outputDir: samples/client/petstore/csharp/generichost/net4.8/AnyOfNoCompare
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/anyOf.yaml
|
||||||
|
library: generichost
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'
|
||||||
|
useCompareNetObjects: false
|
||||||
|
disallowAdditionalPropertiesIfNotPresent: false
|
||||||
|
nullableReferenceTypes: false
|
||||||
|
equatable: true
|
||||||
|
targetFramework: net48
|
17
bin/configs/csharp-generichost-net4.8-formModels.yaml
Normal file
17
bin/configs/csharp-generichost-net4.8-formModels.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# for csharp generichost
|
||||||
|
generatorName: csharp
|
||||||
|
outputDir: samples/client/petstore/csharp/generichost/net4.8/FormModels
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
|
||||||
|
library: generichost
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'
|
||||||
|
useCompareNetObjects: true
|
||||||
|
disallowAdditionalPropertiesIfNotPresent: false
|
||||||
|
nullableReferenceTypes: false
|
||||||
|
equatable: true
|
||||||
|
targetFramework: net48
|
||||||
|
skipFormModel: false
|
||||||
|
modelPropertySorting: alphabetical
|
||||||
|
inlineSchemaOptions:
|
||||||
|
RESOLVE_INLINE_ENUMS: true
|
13
bin/configs/csharp-generichost-net4.8-oneOf.yaml
Normal file
13
bin/configs/csharp-generichost-net4.8-oneOf.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# for csharp generichost
|
||||||
|
generatorName: csharp
|
||||||
|
outputDir: samples/client/petstore/csharp/generichost/net4.8/OneOf
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/oneOf.yaml
|
||||||
|
library: generichost
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'
|
||||||
|
useCompareNetObjects: true
|
||||||
|
disallowAdditionalPropertiesIfNotPresent: false
|
||||||
|
nullableReferenceTypes: false
|
||||||
|
equatable: true
|
||||||
|
targetFramework: net48
|
@ -0,0 +1,11 @@
|
|||||||
|
# for csharp generichost
|
||||||
|
generatorName: csharp
|
||||||
|
outputDir: samples/client/petstore/csharp/generichost/net4.8/UseDateTimeForDate
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/dates-api.yaml
|
||||||
|
library: generichost
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{2E60EF87-DB0B-4D01-A36E-F5E90F7EC757}'
|
||||||
|
useDateTimeForDate: true
|
||||||
|
targetFramework: net48
|
||||||
|
modelPropertySorting: alphabetical
|
14
bin/configs/csharp-generichost-net4.8.yaml
Normal file
14
bin/configs/csharp-generichost-net4.8.yaml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# for csharp generichost
|
||||||
|
generatorName: csharp
|
||||||
|
outputDir: samples/client/petstore/csharp/generichost/net4.8/Petstore
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
|
||||||
|
library: generichost
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
||||||
|
additionalProperties:
|
||||||
|
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'
|
||||||
|
useCompareNetObjects: true
|
||||||
|
disallowAdditionalPropertiesIfNotPresent: false
|
||||||
|
nullableReferenceTypes: false
|
||||||
|
equatable: true
|
||||||
|
targetFramework: net48
|
||||||
|
modelPropertySorting: alphabetical
|
@ -12,5 +12,6 @@ additionalProperties:
|
|||||||
equatable: true
|
equatable: true
|
||||||
targetFramework: net8.0
|
targetFramework: net8.0
|
||||||
skipFormModel: false
|
skipFormModel: false
|
||||||
|
modelPropertySorting: alphabetical
|
||||||
inlineSchemaOptions:
|
inlineSchemaOptions:
|
||||||
RESOLVE_INLINE_ENUMS: true
|
RESOLVE_INLINE_ENUMS: true
|
||||||
|
@ -11,3 +11,4 @@ additionalProperties:
|
|||||||
useSourceGeneration: true
|
useSourceGeneration: true
|
||||||
equatable: true
|
equatable: true
|
||||||
targetFramework: net8.0
|
targetFramework: net8.0
|
||||||
|
modelPropertySorting: alphabetical
|
||||||
|
@ -11,3 +11,4 @@ additionalProperties:
|
|||||||
nullableReferenceTypes: true
|
nullableReferenceTypes: true
|
||||||
equatable: true
|
equatable: true
|
||||||
targetFramework: net8.0
|
targetFramework: net8.0
|
||||||
|
modelPropertySorting: alphabetical
|
||||||
|
@ -8,3 +8,4 @@ additionalProperties:
|
|||||||
packageGuid: '{2E60EF87-DB0B-4D01-A36E-F5E90F7EC757}'
|
packageGuid: '{2E60EF87-DB0B-4D01-A36E-F5E90F7EC757}'
|
||||||
useDateTimeForDate: true
|
useDateTimeForDate: true
|
||||||
targetFramework: net8.0
|
targetFramework: net8.0
|
||||||
|
modelPropertySorting: alphabetical
|
||||||
|
@ -11,3 +11,4 @@ additionalProperties:
|
|||||||
nullableReferenceTypes: false
|
nullableReferenceTypes: false
|
||||||
equatable: true
|
equatable: true
|
||||||
targetFramework: net8.0
|
targetFramework: net8.0
|
||||||
|
modelPropertySorting: alphabetical
|
||||||
|
@ -10,3 +10,4 @@ additionalProperties:
|
|||||||
disallowAdditionalPropertiesIfNotPresent: false
|
disallowAdditionalPropertiesIfNotPresent: false
|
||||||
targetFramework: netstandard2.0
|
targetFramework: netstandard2.0
|
||||||
equatable: true
|
equatable: true
|
||||||
|
modelPropertySorting: alphabetical
|
||||||
|
4
bin/configs/haskell-servant-ping.yaml
Normal file
4
bin/configs/haskell-servant-ping.yaml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
generatorName: haskell
|
||||||
|
outputDir: samples/server/others/haskell-servant-ping
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/ping.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/haskell-servant
|
@ -0,0 +1,8 @@
|
|||||||
|
generatorName: java
|
||||||
|
outputDir: samples/client/petstore/java/microprofile-rest-client-outer-enum
|
||||||
|
library: microprofile
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/outerEnum.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/Java
|
||||||
|
additionalProperties:
|
||||||
|
artifactId: microprofile-rest-client
|
||||||
|
configKeyFromClassName: true
|
@ -1,6 +1,6 @@
|
|||||||
generatorName: k6
|
generatorName: k6
|
||||||
outputDir: samples/client/petstore/k6
|
outputDir: samples/client/petstore/k6
|
||||||
inputSpec: modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing.yaml
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/k6/petstore-with-fake-endpoints-models-for-testing.yaml
|
||||||
templateDir: modules/openapi-generator/src/main/resources/k6
|
templateDir: modules/openapi-generator/src/main/resources/k6
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
appName: PetstoreClient
|
appName: PetstoreClient
|
||||||
|
@ -11,5 +11,6 @@ additionalProperties:
|
|||||||
library: jvm-retrofit2
|
library: jvm-retrofit2
|
||||||
enumPropertyNaming: UPPERCASE
|
enumPropertyNaming: UPPERCASE
|
||||||
serializationLibrary: gson
|
serializationLibrary: gson
|
||||||
|
generateOneOfAnyOfWrappers: true
|
||||||
openapiNormalizer:
|
openapiNormalizer:
|
||||||
SIMPLIFY_ONEOF_ANYOF: false
|
SIMPLIFY_ONEOF_ANYOF: false
|
||||||
|
7
bin/configs/kotlin-server-javalin-6.yaml
Normal file
7
bin/configs/kotlin-server-javalin-6.yaml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
generatorName: kotlin-server
|
||||||
|
outputDir: samples/server/petstore/kotlin-server/javalin-6
|
||||||
|
library: javalin6
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/petstore.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/kotlin-server
|
||||||
|
additionalProperties:
|
||||||
|
hideGenerationTimestamp: "true"
|
@ -11,3 +11,4 @@ additionalProperties:
|
|||||||
serializableModel: "true"
|
serializableModel: "true"
|
||||||
beanValidations: "true"
|
beanValidations: "true"
|
||||||
useSpringBoot3: "true"
|
useSpringBoot3: "true"
|
||||||
|
requestMappingMode: api_interface
|
||||||
|
14
bin/configs/kotlin-spring-boot-delegate-nodefaults.yaml
Normal file
14
bin/configs/kotlin-spring-boot-delegate-nodefaults.yaml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
generatorName: kotlin-spring
|
||||||
|
outputDir: samples/server/petstore/kotlin-springboot-delegate-nodefaults
|
||||||
|
library: spring-boot
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/petstore.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/kotlin-spring
|
||||||
|
additionalProperties:
|
||||||
|
documentationProvider: none
|
||||||
|
annotationLibrary: swagger2
|
||||||
|
useSwaggerUI: "true"
|
||||||
|
delegatePattern: "true"
|
||||||
|
skipDefaultInterface: "true"
|
||||||
|
beanValidations: "true"
|
||||||
|
requestMappingMode: "api_interface"
|
||||||
|
useSpringBoot3: "true"
|
@ -8,4 +8,6 @@ additionalProperties:
|
|||||||
annotationLibrary: swagger2
|
annotationLibrary: swagger2
|
||||||
useSwaggerUI: "true"
|
useSwaggerUI: "true"
|
||||||
delegatePattern: "true"
|
delegatePattern: "true"
|
||||||
|
appendRequestToHandler: "true"
|
||||||
beanValidations: "true"
|
beanValidations: "true"
|
||||||
|
requestMappingMode: none
|
||||||
|
13
bin/configs/kotlin-spring-boot-integer-enum.yaml
Normal file
13
bin/configs/kotlin-spring-boot-integer-enum.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
generatorName: kotlin-spring
|
||||||
|
outputDir: samples/server/petstore/kotlin-springboot-integer-enum
|
||||||
|
library: spring-boot
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/kotlin/issue19244_integer_enum.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/kotlin-spring
|
||||||
|
additionalProperties:
|
||||||
|
interfaceOnly: "true"
|
||||||
|
skipDefaultInterface: "true"
|
||||||
|
useTags: "true"
|
||||||
|
useSpringBoot3: "true"
|
||||||
|
annotationLibrary: none
|
||||||
|
documentationProvider: none
|
||||||
|
enumPropertyNaming: UPPERCASE
|
@ -0,0 +1,5 @@
|
|||||||
|
generatorName: kotlin-spring
|
||||||
|
outputDir: samples/server/petstore/kotlin-springboot-multipart-request-model
|
||||||
|
library: spring-boot
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/issue_15251_multipart_request_model.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/kotlin-spring
|
@ -10,3 +10,4 @@ additionalProperties:
|
|||||||
serviceImplementation: "true"
|
serviceImplementation: "true"
|
||||||
serializableModel: "true"
|
serializableModel: "true"
|
||||||
beanValidations: "true"
|
beanValidations: "true"
|
||||||
|
requestMappingMode: controller
|
||||||
|
@ -5,3 +5,4 @@ templateDir: modules/openapi-generator/src/main/resources/python
|
|||||||
additionalProperties:
|
additionalProperties:
|
||||||
hideGenerationTimestamp: "true"
|
hideGenerationTimestamp: "true"
|
||||||
disallowAdditionalPropertiesIfNotPresent: "true"
|
disallowAdditionalPropertiesIfNotPresent: "true"
|
||||||
|
setEnsureAsciiToFalse: true
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
generatorName: python-flask
|
generatorName: python-flask
|
||||||
outputDir: samples/server/petstore/python-flask
|
outputDir: samples/server/petstore/python-flask
|
||||||
inputSpec: modules/openapi-generator/src/test/resources/2_0/python-flask/petstore.yaml
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/python-flask/petstore.yaml
|
||||||
templateDir: modules/openapi-generator/src/main/resources/python-flask
|
templateDir: modules/openapi-generator/src/main/resources/python-flask
|
||||||
|
8
bin/configs/rust-hyper0x-petstore.yaml
Normal file
8
bin/configs/rust-hyper0x-petstore.yaml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
generatorName: rust
|
||||||
|
outputDir: samples/client/petstore/rust/hyper0x/petstore
|
||||||
|
library: hyper0x
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/rust/petstore.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/rust
|
||||||
|
additionalProperties:
|
||||||
|
supportAsync: "false"
|
||||||
|
packageName: petstore-hyper0x
|
10
bin/configs/spring-boot-file-delegate-optional.yaml
Normal file
10
bin/configs/spring-boot-file-delegate-optional.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
generatorName: spring
|
||||||
|
outputDir: samples/server/petstore/springboot-file-delegate-optional
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/issue18345.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/JavaSpring
|
||||||
|
additionalProperties:
|
||||||
|
delegatePattern: true
|
||||||
|
useOptional: true
|
||||||
|
useSpringBoot3: true
|
||||||
|
artifactId: spring-boot-use-optional
|
||||||
|
hideGenerationTimestamp: "true"
|
7
bin/configs/typescript-angular-v18-provided-in-root.yaml
Normal file
7
bin/configs/typescript-angular-v18-provided-in-root.yaml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
generatorName: typescript-angular
|
||||||
|
outputDir: samples/client/petstore/typescript-angular-v18-provided-in-root/builds/default
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/petstore.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/typescript-angular
|
||||||
|
additionalProperties:
|
||||||
|
ngVersion: 18.0.0
|
||||||
|
supportsES6: true
|
4
bin/configs/typescript-fetch-oneOf.yaml
Normal file
4
bin/configs/typescript-fetch-oneOf.yaml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
generatorName: typescript-fetch
|
||||||
|
outputDir: samples/client/petstore/typescript-fetch/builds/oneOf
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/typescript-fetch/oneOf.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/typescript-fetch
|
7
bin/configs/typescript-fetch-self-import-issue.yaml
Normal file
7
bin/configs/typescript-fetch-self-import-issue.yaml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
generatorName: typescript-fetch
|
||||||
|
outputDir: samples/client/others/typescript-fetch/self-import-issue
|
||||||
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/typescript-fetch/self-import-issue.yaml
|
||||||
|
templateDir: modules/openapi-generator/src/main/resources/typescript-fetch
|
||||||
|
additionalProperties:
|
||||||
|
typescriptThreePlus: "true"
|
||||||
|
legacyDiscriminatorBehavior: "false"
|
@ -34,7 +34,7 @@ The following generators are available:
|
|||||||
* [java-micronaut-client (beta)](generators/java-micronaut-client.md)
|
* [java-micronaut-client (beta)](generators/java-micronaut-client.md)
|
||||||
* [javascript](generators/javascript.md)
|
* [javascript](generators/javascript.md)
|
||||||
* [javascript-apollo-deprecated (deprecated)](generators/javascript-apollo-deprecated.md)
|
* [javascript-apollo-deprecated (deprecated)](generators/javascript-apollo-deprecated.md)
|
||||||
* [javascript-closure-angular](generators/javascript-closure-angular.md)
|
* [javascript-closure-angular (beta)](generators/javascript-closure-angular.md)
|
||||||
* [javascript-flowtyped](generators/javascript-flowtyped.md)
|
* [javascript-flowtyped](generators/javascript-flowtyped.md)
|
||||||
* [jaxrs-cxf-client](generators/jaxrs-cxf-client.md)
|
* [jaxrs-cxf-client](generators/jaxrs-cxf-client.md)
|
||||||
* [jetbrains-http-client (experimental)](generators/jetbrains-http-client.md)
|
* [jetbrains-http-client (experimental)](generators/jetbrains-http-client.md)
|
||||||
|
@ -18,7 +18,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|
|
||||||
| Option | Description | Values | Default |
|
| Option | Description | Values | Default |
|
||||||
| ------ | ----------- | ------ | ------- |
|
| ------ | ----------- | ------ | ------- |
|
||||||
|aspnetCoreVersion|ASP.NET Core version: 6.0, 5.0, 3.1, 3.0, 2.2, 2.1, 2.0 (deprecated)|<dl><dt>**2.0**</dt><dd>ASP.NET Core 2.0</dd><dt>**2.1**</dt><dd>ASP.NET Core 2.1</dd><dt>**2.2**</dt><dd>ASP.NET Core 2.2</dd><dt>**3.0**</dt><dd>ASP.NET Core 3.0</dd><dt>**3.1**</dt><dd>ASP.NET Core 3.1</dd><dt>**5.0**</dt><dd>ASP.NET Core 5.0</dd><dt>**6.0**</dt><dd>ASP.NET Core 6.0</dd></dl>|3.1|
|
|aspnetCoreVersion|ASP.NET Core version: 6.0, 5.0, 3.1, 3.0, 2.2, 2.1, 2.0 (deprecated)|<dl><dt>**2.0**</dt><dd>ASP.NET Core 2.0</dd><dt>**2.1**</dt><dd>ASP.NET Core 2.1</dd><dt>**2.2**</dt><dd>ASP.NET Core 2.2</dd><dt>**3.0**</dt><dd>ASP.NET Core 3.0</dd><dt>**3.1**</dt><dd>ASP.NET Core 3.1</dd><dt>**5.0**</dt><dd>ASP.NET Core 5.0</dd><dt>**6.0**</dt><dd>ASP.NET Core 6.0</dd><dt>**7.0**</dt><dd>ASP.NET Core 7.0</dd><dt>**8.0**</dt><dd>ASP.NET Core 8.0</dd></dl>|8.0|
|
||||||
|buildTarget|Target to build an application or library|<dl><dt>**program**</dt><dd>Generate code for a standalone server</dd><dt>**library**</dt><dd>Generate code for a server abstract class library</dd></dl>|program|
|
|buildTarget|Target to build an application or library|<dl><dt>**program**</dt><dd>Generate code for a standalone server</dd><dt>**library**</dt><dd>Generate code for a server abstract class library</dd></dl>|program|
|
||||||
|classModifier|Class Modifier for controller classes: Empty string or abstract.| ||
|
|classModifier|Class Modifier for controller classes: Empty string or abstract.| ||
|
||||||
|compatibilityVersion|ASP.Net Core CompatibilityVersion| |Version_2_2|
|
|compatibilityVersion|ASP.Net Core CompatibilityVersion| |Version_2_2|
|
||||||
@ -45,7 +45,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|returnICollection|Return ICollection<T> instead of the concrete type.| |false|
|
|returnICollection|Return ICollection<T> instead of the concrete type.| |false|
|
||||||
|sortParamsByRequiredFlag|Sort method arguments to place required parameters before optional parameters.| |true|
|
|sortParamsByRequiredFlag|Sort method arguments to place required parameters before optional parameters.| |true|
|
||||||
|sourceFolder|source folder for generated code| |src|
|
|sourceFolder|source folder for generated code| |src|
|
||||||
|swashbuckleVersion|Swashbuckle version: 3.0.0 (deprecated), 4.0.0 (deprecated), 5.0.0 (deprecated), 6.4.0|<dl><dt>**3.0.0**</dt><dd>Swashbuckle 3.0.0</dd><dt>**4.0.0**</dt><dd>Swashbuckle 4.0.0</dd><dt>**5.0.0**</dt><dd>Swashbuckle 5.0.0</dd><dt>**6.4.0**</dt><dd>Swashbuckle 6.4.0</dd></dl>|3.0.0|
|
|swashbuckleVersion|Swashbuckle version: 3.0.0 (deprecated), 4.0.0 (deprecated), 5.0.0 (deprecated), 6.4.0|<dl><dt>**3.0.0**</dt><dd>Swashbuckle 3.0.0</dd><dt>**4.0.0**</dt><dd>Swashbuckle 4.0.0</dd><dt>**5.0.0**</dt><dd>Swashbuckle 5.0.0</dd><dt>**6.4.0**</dt><dd>Swashbuckle 6.4.0</dd></dl>|6.4.0|
|
||||||
|useCollection|Deserialize array types to Collection<T> instead of List<T>.| |false|
|
|useCollection|Deserialize array types to Collection<T> instead of List<T>.| |false|
|
||||||
|useDateTimeForDate|Use DateTime to model date properties even if DateOnly supported. (.net 6.0+ only)| |false|
|
|useDateTimeForDate|Use DateTime to model date properties even if DateOnly supported. (.net 6.0+ only)| |false|
|
||||||
|useDateTimeOffset|Use DateTimeOffset to model date-time properties| |false|
|
|useDateTimeOffset|Use DateTimeOffset to model date-time properties| |false|
|
||||||
|
@ -249,7 +249,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|Union|✗|OAS3
|
|Union|✗|OAS3
|
||||||
|allOf|✗|OAS2,OAS3
|
|allOf|✗|OAS2,OAS3
|
||||||
|anyOf|✗|OAS3
|
|anyOf|✗|OAS3
|
||||||
|oneOf|✗|OAS3
|
|oneOf|✓|OAS3
|
||||||
|not|✗|OAS3
|
|not|✗|OAS3
|
||||||
|
|
||||||
### Security Feature
|
### Security Feature
|
||||||
|
@ -31,9 +31,11 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|library|HTTP library template (sub-template) to use|<dl><dt>**generichost**</dt><dd>HttpClient with Generic Host dependency injection (https://docs.microsoft.com/en-us/dotnet/core/extensions/generic-host) (Experimental. Subject to breaking changes without notice.)</dd><dt>**httpclient**</dt><dd>HttpClient (https://docs.microsoft.com/en-us/dotnet/api/system.net.http.httpclient) (Experimental. Subject to breaking changes without notice.)</dd><dt>**unityWebRequest**</dt><dd>UnityWebRequest (...) (Experimental. Subject to breaking changes without notice.)</dd><dt>**restsharp**</dt><dd>RestSharp (https://github.com/restsharp/RestSharp)</dd></dl>|restsharp|
|
|library|HTTP library template (sub-template) to use|<dl><dt>**generichost**</dt><dd>HttpClient with Generic Host dependency injection (https://docs.microsoft.com/en-us/dotnet/core/extensions/generic-host) (Experimental. Subject to breaking changes without notice.)</dd><dt>**httpclient**</dt><dd>HttpClient (https://docs.microsoft.com/en-us/dotnet/api/system.net.http.httpclient) (Experimental. Subject to breaking changes without notice.)</dd><dt>**unityWebRequest**</dt><dd>UnityWebRequest (...) (Experimental. Subject to breaking changes without notice.)</dd><dt>**restsharp**</dt><dd>RestSharp (https://github.com/restsharp/RestSharp)</dd></dl>|restsharp|
|
||||||
|licenseId|The identifier of the license| |null|
|
|licenseId|The identifier of the license| |null|
|
||||||
|modelPropertyNaming|Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name| |PascalCase|
|
|modelPropertyNaming|Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name| |PascalCase|
|
||||||
|
|modelPropertySorting|One of legacy, alphabetical, default (only `generichost` library supports this option).| |legacy|
|
||||||
|netCoreProjectFile|Use the new format (.NET Core) for .NET project files (.csproj).| |false|
|
|netCoreProjectFile|Use the new format (.NET Core) for .NET project files (.csproj).| |false|
|
||||||
|nonPublicApi|Generates code with reduced access modifiers; allows embedding elsewhere without exposing non-public API calls to consumers.| |false|
|
|nonPublicApi|Generates code with reduced access modifiers; allows embedding elsewhere without exposing non-public API calls to consumers.| |false|
|
||||||
|nullableReferenceTypes|Use nullable annotations in the project. Only supported on C# 8 / ASP.NET Core 3.1 or newer. Starting in .NET 6.0 the default is true.| |false|
|
|nullableReferenceTypes|Use nullable annotations in the project. Only supported on C# 8 / ASP.NET Core 3.1 or newer. Starting in .NET 6.0 the default is true.| |false|
|
||||||
|
|operationParameterSorting|One of legacy, alphabetical, default (only `generichost` library supports this option).| |legacy|
|
||||||
|optionalAssemblyInfo|Generate AssemblyInfo.cs.| |true|
|
|optionalAssemblyInfo|Generate AssemblyInfo.cs.| |true|
|
||||||
|optionalEmitDefaultValues|Set DataMember's EmitDefaultValue.| |false|
|
|optionalEmitDefaultValues|Set DataMember's EmitDefaultValue.| |false|
|
||||||
|optionalMethodArgument|C# Optional method argument, e.g. void square(int x=10) (.net 4.0+ only).| |true|
|
|optionalMethodArgument|C# Optional method argument, e.g. void square(int x=10) (.net 4.0+ only).| |true|
|
||||||
|
@ -68,9 +68,22 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
<li>__ENV__</li>
|
<li>__ENV__</li>
|
||||||
<li>__FILE__</li>
|
<li>__FILE__</li>
|
||||||
<li>__MODULE__</li>
|
<li>__MODULE__</li>
|
||||||
|
<li>__struct__</li>
|
||||||
|
<li>after</li>
|
||||||
|
<li>and</li>
|
||||||
|
<li>catch</li>
|
||||||
|
<li>do</li>
|
||||||
|
<li>else</li>
|
||||||
|
<li>end</li>
|
||||||
<li>false</li>
|
<li>false</li>
|
||||||
|
<li>fn</li>
|
||||||
|
<li>in</li>
|
||||||
<li>nil</li>
|
<li>nil</li>
|
||||||
|
<li>not</li>
|
||||||
|
<li>or</li>
|
||||||
|
<li>rescue</li>
|
||||||
<li>true</li>
|
<li>true</li>
|
||||||
|
<li>when</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
## FEATURE SET
|
## FEATURE SET
|
||||||
|
@ -80,7 +80,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
||||||
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
||||||
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
||||||
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD|null
|
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD, OPERATION_PARAMETER|null
|
||||||
|
|
||||||
|
|
||||||
## IMPORT MAPPING
|
## IMPORT MAPPING
|
||||||
|
@ -120,11 +120,11 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
||||||
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
||||||
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
||||||
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD|null
|
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD, OPERATION_PARAMETER|null
|
||||||
|x-operation-extra-annotation|List of custom annotations to be added to operation|OPERATION|null
|
|x-operation-extra-annotation|List of custom annotations to be added to operation|OPERATION|null
|
||||||
|x-spring-paginated|Add org.springframework.data.domain.Pageable to controller method. Can be used to handle page & size query parameters|OPERATION|false
|
|x-spring-paginated|Add org.springframework.data.domain.Pageable to controller method. Can be used to handle page & size query parameters|OPERATION|false
|
||||||
|x-version-param|Marker property that tells that this parameter would be used for endpoint versioning. Applicable for headers & query params. true/false|OPERATION_PARAMETER|null
|
|x-version-param|Marker property that tells that this parameter would be used for endpoint versioning. Applicable for headers & query params. true/false|OPERATION_PARAMETER|null
|
||||||
|x-pattern-message|Add this property whenever you need to customize the invalidation error message for the regex pattern of a variable|FIELD|null
|
|x-pattern-message|Add this property whenever you need to customize the invalidation error message for the regex pattern of a variable|FIELD, OPERATION_PARAMETER|null
|
||||||
|
|
||||||
|
|
||||||
## IMPORT MAPPING
|
## IMPORT MAPPING
|
||||||
|
@ -77,7 +77,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
||||||
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
||||||
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
||||||
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD|null
|
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD, OPERATION_PARAMETER|null
|
||||||
|x-webclient-blocking|Specifies if method for specific operation should be blocking or non-blocking(ex: return `Mono<T>/Flux<T>` or `return T/List<T>/Set<T>` & execute `.block()` inside generated method)|OPERATION|false
|
|x-webclient-blocking|Specifies if method for specific operation should be blocking or non-blocking(ex: return `Mono<T>/Flux<T>` or `return T/List<T>/Set<T>` & execute `.block()` inside generated method)|OPERATION|false
|
||||||
|
|
||||||
|
|
||||||
|
@ -80,7 +80,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
||||||
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
||||||
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
||||||
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD|null
|
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD, OPERATION_PARAMETER|null
|
||||||
|
|
||||||
|
|
||||||
## IMPORT MAPPING
|
## IMPORT MAPPING
|
||||||
|
@ -82,7 +82,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
||||||
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
||||||
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
||||||
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD|null
|
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD, OPERATION_PARAMETER|null
|
||||||
|
|
||||||
|
|
||||||
## IMPORT MAPPING
|
## IMPORT MAPPING
|
||||||
|
@ -103,7 +103,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
||||||
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
||||||
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
||||||
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD|null
|
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD, OPERATION_PARAMETER|null
|
||||||
|
|
||||||
|
|
||||||
## IMPORT MAPPING
|
## IMPORT MAPPING
|
||||||
|
@ -102,7 +102,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
||||||
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
||||||
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
||||||
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD|null
|
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD, OPERATION_PARAMETER|null
|
||||||
|
|
||||||
|
|
||||||
## IMPORT MAPPING
|
## IMPORT MAPPING
|
||||||
|
@ -60,7 +60,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|implicitHeadersRegex|Skip header parameters that matches given regex in the generated API methods using @ApiImplicitParams annotation. Note: this parameter is ignored when implicitHeaders=true| |null|
|
|implicitHeadersRegex|Skip header parameters that matches given regex in the generated API methods using @ApiImplicitParams annotation. Note: this parameter is ignored when implicitHeaders=true| |null|
|
||||||
|invokerPackage|root package for generated code| |org.openapitools.client|
|
|invokerPackage|root package for generated code| |org.openapitools.client|
|
||||||
|legacyDiscriminatorBehavior|Set to false for generators with better support for discriminators. (Python, Java, Go, PowerShell, C# have this enabled by default).|<dl><dt>**true**</dt><dd>The mapping in the discriminator includes descendent schemas that allOf inherit from self and the discriminator mapping schemas in the OAS document.</dd><dt>**false**</dt><dd>The mapping in the discriminator includes any descendent schemas that allOf inherit from self, any oneOf schemas, any anyOf schemas, any x-discriminator-values, and the discriminator mapping schemas in the OAS document AND Codegen validates that oneOf and anyOf schemas contain the required discriminator and throws an error if the discriminator is missing.</dd></dl>|true|
|
|legacyDiscriminatorBehavior|Set to false for generators with better support for discriminators. (Python, Java, Go, PowerShell, C# have this enabled by default).|<dl><dt>**true**</dt><dd>The mapping in the discriminator includes descendent schemas that allOf inherit from self and the discriminator mapping schemas in the OAS document.</dd><dt>**false**</dt><dd>The mapping in the discriminator includes any descendent schemas that allOf inherit from self, any oneOf schemas, any anyOf schemas, any x-discriminator-values, and the discriminator mapping schemas in the OAS document AND Codegen validates that oneOf and anyOf schemas contain the required discriminator and throws an error if the discriminator is missing.</dd></dl>|true|
|
||||||
|library|library template (sub-template) to use|<dl><dt>**jersey2**</dt><dd>HTTP client: Jersey client 2.25.1. JSON processing: Jackson 2.9.x</dd><dt>**jersey3**</dt><dd>HTTP client: Jersey client 3.x. JSON processing: Jackson 2.x</dd><dt>**feign**</dt><dd>HTTP client: OpenFeign 10.x. JSON processing: Jackson 2.9.x. or Gson 2.x</dd><dt>**okhttp-gson**</dt><dd>[DEFAULT] HTTP client: OkHttp 3.x. JSON processing: Gson 2.8.x. Enable Parcelable models on Android using '-DparcelableModel=true'. Enable gzip request encoding using '-DuseGzipFeature=true'.</dd><dt>**retrofit2**</dt><dd>HTTP client: OkHttp 3.x. JSON processing: Gson 2.x (Retrofit 2.3.0). Enable the RxJava adapter using '-DuseRxJava[2/3]=true'. (RxJava 1.x or 2.x or 3.x)</dd><dt>**resttemplate**</dt><dd>HTTP client: Spring RestTemplate 4.x. JSON processing: Jackson 2.9.x</dd><dt>**webclient**</dt><dd>HTTP client: Spring WebClient 5.x. JSON processing: Jackson 2.9.x</dd><dt>**restclient**</dt><dd>HTTP client: Spring RestClient 6.1. JSON processing: Jackson 2.9.x</dd><dt>**resteasy**</dt><dd>HTTP client: Resteasy client 3.x. JSON processing: Jackson 2.9.x</dd><dt>**vertx**</dt><dd>HTTP client: VertX client 3.x. JSON processing: Jackson 2.9.x</dd><dt>**google-api-client**</dt><dd>HTTP client: Google API client 1.x. JSON processing: Jackson 2.9.x</dd><dt>**rest-assured**</dt><dd>HTTP client: rest-assured : 4.x. JSON processing: Gson 2.x or Jackson 2.10.x. Only for Java 8</dd><dt>**native**</dt><dd>HTTP client: Java native HttpClient. JSON processing: Jackson 2.9.x. Only for Java11+</dd><dt>**microprofile**</dt><dd>HTTP client: Microprofile client 1.x. JSON processing: JSON-B or Jackson 2.9.x</dd><dt>**apache-httpclient**</dt><dd>HTTP client: Apache httpclient 5.x</dd></dl>|okhttp-gson|
|
|library|library template (sub-template) to use|<dl><dt>**jersey2**</dt><dd>HTTP client: Jersey client 2.25.1. JSON processing: Jackson 2.17.1</dd><dt>**jersey3**</dt><dd>HTTP client: Jersey client 3.1.1. JSON processing: Jackson 2.17.1</dd><dt>**feign**</dt><dd>HTTP client: OpenFeign 13.2.1. JSON processing: Jackson 2.17.1 or Gson 2.10.1</dd><dt>**okhttp-gson**</dt><dd>[DEFAULT] HTTP client: OkHttp 4.11.0. JSON processing: Gson 2.10.1. Enable Parcelable models on Android using '-DparcelableModel=true'. Enable gzip request encoding using '-DuseGzipFeature=true'.</dd><dt>**retrofit2**</dt><dd>HTTP client: OkHttp 4.11.0. JSON processing: Gson 2.10.1 (Retrofit 2.5.0) or Jackson 2.17.1. Enable the RxJava adapter using '-DuseRxJava[2/3]=true'. (RxJava 1.x or 2.x or 3.x)</dd><dt>**resttemplate**</dt><dd>HTTP client: Spring RestTemplate 5.3.33 (6.1.5 if `useJakartaEe=true`). JSON processing: Jackson 2.17.1</dd><dt>**webclient**</dt><dd>HTTP client: Spring WebClient 5.1.18. JSON processing: Jackson 2.17.1</dd><dt>**restclient**</dt><dd>HTTP client: Spring RestClient 6.1.6. JSON processing: Jackson 2.17.1</dd><dt>**resteasy**</dt><dd>HTTP client: Resteasy client 4.7.6. JSON processing: Jackson 2.17.1</dd><dt>**vertx**</dt><dd>HTTP client: VertX client 3.5.2. JSON processing: Jackson 2.17.1</dd><dt>**google-api-client**</dt><dd>HTTP client: Google API client 2.2.0. JSON processing: Jackson 2.17.1</dd><dt>**rest-assured**</dt><dd>HTTP client: rest-assured 5.3.2. JSON processing: Gson 2.10.1 or Jackson 2.17.1. Only for Java 8</dd><dt>**native**</dt><dd>HTTP client: Java native HttpClient. JSON processing: Jackson 2.17.1. Only for Java11+</dd><dt>**microprofile**</dt><dd>HTTP client: Microprofile client 2.0 (default, set desired version via `microprofileRestClientVersion=x.x.x`). JSON processing: JSON-B 1.0.2 or Jackson 2.17.1</dd><dt>**apache-httpclient**</dt><dd>HTTP client: Apache httpclient 5.2.1. JSON processing: Jackson 2.17.1</dd></dl>|okhttp-gson|
|
||||||
|licenseName|The name of the license| |Unlicense|
|
|licenseName|The name of the license| |Unlicense|
|
||||||
|licenseUrl|The URL of the license| |http://unlicense.org|
|
|licenseUrl|The URL of the license| |http://unlicense.org|
|
||||||
|microprofileFramework|Framework for microprofile. Possible values "kumuluzee"| |null|
|
|microprofileFramework|Framework for microprofile. Possible values "kumuluzee"| |null|
|
||||||
@ -114,7 +114,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
||||||
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
||||||
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
||||||
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD|null
|
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD, OPERATION_PARAMETER|null
|
||||||
|x-webclient-blocking|Specifies if method for specific operation should be blocking or non-blocking(ex: return `Mono<T>/Flux<T>` or `return T/List<T>/Set<T>` & execute `.block()` inside generated method)|OPERATION|false
|
|x-webclient-blocking|Specifies if method for specific operation should be blocking or non-blocking(ex: return `Mono<T>/Flux<T>` or `return T/List<T>/Set<T>` & execute `.block()` inside generated method)|OPERATION|false
|
||||||
|
|
||||||
|
|
||||||
|
@ -88,7 +88,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
||||||
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
||||||
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
||||||
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD|null
|
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD, OPERATION_PARAMETER|null
|
||||||
|
|
||||||
|
|
||||||
## IMPORT MAPPING
|
## IMPORT MAPPING
|
||||||
|
@ -89,7 +89,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
|
|||||||
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
|x-accepts|Specify custom value for 'Accept' header for operation|OPERATION|null
|
||||||
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
|x-content-type|Specify custom value for 'Content-Type' header for operation|OPERATION|null
|
||||||
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
|x-class-extra-annotation|List of custom annotations to be added to model|MODEL|null
|
||||||
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD|null
|
|x-field-extra-annotation|List of custom annotations to be added to property|FIELD, OPERATION_PARAMETER|null
|
||||||
|
|
||||||
|
|
||||||
## IMPORT MAPPING
|
## IMPORT MAPPING
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user