Skip to content

Commit 600ad25

Browse files
committed
Merge branch 'master' into issue-21317
2 parents 8f77456 + 5eb083e commit 600ad25

File tree

154 files changed

+1405
-377
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+1405
-377
lines changed

.github/workflows/samples-java-client-jdk11.yaml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,27 @@ jobs:
110110
path: |
111111
~/.m2
112112
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
113-
- name: Build
113+
- name: Build with Maven
114114
working-directory: ${{ matrix.sample }}
115115
run: mvn clean package --no-transfer-progress
116+
117+
- name: Cache gradle dependencies
118+
uses: actions/cache@v4
119+
env:
120+
cache-name: gradle-caches
121+
with:
122+
path: ~/.gradle/caches
123+
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }}
124+
125+
- name: Cache gradle wrapper
126+
uses: actions/cache@v4
127+
env:
128+
cache-name: gradle-wrapper
129+
with:
130+
path: ~/.gradle/wrapper
131+
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
132+
133+
- name: Build with Gradle
134+
working-directory: ${{ matrix.sample }}
135+
if: ${{ hashFiles('./gradlew') != '' }}
136+
run: ./gradlew build -x test

modules/openapi-generator-cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>org.openapitools</groupId>
55
<artifactId>openapi-generator-project</artifactId>
66
<!-- RELEASE_VERSION -->
7-
<version>7.14.0-SNAPSHOT</version>
7+
<version>7.14.0</version>
88
<!-- /RELEASE_VERSION -->
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>

modules/openapi-generator-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>openapi-generator-project</artifactId>
77
<groupId>org.openapitools</groupId>
88
<!-- RELEASE_VERSION -->
9-
<version>7.14.0-SNAPSHOT</version>
9+
<version>7.14.0</version>
1010
<!-- /RELEASE_VERSION -->
1111
<relativePath>../../pom.xml</relativePath>
1212
</parent>

modules/openapi-generator-gradle-plugin/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# RELEASE_VERSION
2-
openApiGeneratorVersion=7.14.0-SNAPSHOT
2+
openApiGeneratorVersion=7.14.0
33
# /RELEASE_VERSION
44

55
# BEGIN placeholders

modules/openapi-generator-gradle-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>org.openapitools</groupId>
55
<artifactId>openapi-generator-project</artifactId>
66
<!-- RELEASE_VERSION -->
7-
<version>7.14.0-SNAPSHOT</version>
7+
<version>7.14.0</version>
88
<!-- /RELEASE_VERSION -->
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# RELEASE_VERSION
2-
openApiGeneratorVersion=7.14.0-SNAPSHOT
2+
openApiGeneratorVersion=7.14.0
33
# /RELEASE_VERSION

modules/openapi-generator-maven-plugin/examples/java-client.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<groupId>org.openapitools</groupId>
1414
<artifactId>openapi-generator-maven-plugin</artifactId>
1515
<!-- RELEASE_VERSION -->
16-
<version>7.14.0-SNAPSHOT</version>
16+
<version>7.14.0</version>
1717
<!-- /RELEASE_VERSION -->
1818
<executions>
1919
<execution>

modules/openapi-generator-maven-plugin/examples/kotlin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<groupId>org.openapitools</groupId>
1616
<artifactId>openapi-generator-maven-plugin</artifactId>
1717
<!-- RELEASE_VERSION -->
18-
<version>7.14.0-SNAPSHOT</version>
18+
<version>7.14.0</version>
1919
<!-- /RELEASE_VERSION -->
2020
<executions>
2121
<execution>

modules/openapi-generator-maven-plugin/examples/multi-module/java-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<groupId>org.openapitools</groupId>
2020
<artifactId>openapi-generator-maven-plugin</artifactId>
2121
<!-- RELEASE_VERSION -->
22-
<version>7.14.0-SNAPSHOT</version>
22+
<version>7.14.0</version>
2323
<!-- /RELEASE_VERSION -->
2424
<dependencies>
2525
<dependency>

modules/openapi-generator-maven-plugin/examples/non-java-invalid-spec.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<groupId>org.openapitools</groupId>
1414
<artifactId>openapi-generator-maven-plugin</artifactId>
1515
<!-- RELEASE_VERSION -->
16-
<version>7.14.0-SNAPSHOT</version>
16+
<version>7.14.0</version>
1717
<!-- /RELEASE_VERSION -->
1818
<executions>
1919
<execution>

0 commit comments

Comments
 (0)