Skip to content

Commit 2c20910

Browse files
committed
upgrade openapi-generator to 7.8.0
1 parent 1217d1a commit 2c20910

File tree

14 files changed

+63
-121
lines changed
  • snapshotTests/snapshot
    • bigExample/.openapi-generator
    • conversations/.openapi-generator
    • example/.openapi-generator
    • fakerestapi/.openapi-generator
    • geojson/.openapi-generator
    • infectionTracker/.openapi-generator
    • openid-configuration/.openapi-generator
    • petstore/.openapi-generator
    • poly/.openapi-generator
    • readOnlyWriteOnly/.openapi-generator
    • reqres-in/.openapi-generator
    • typeHierarchy/.openapi-generator
    • websockets/.openapi-generator

14 files changed

+63
-121
lines changed

pom.xml

Lines changed: 50 additions & 108 deletions
Original file line numberDiff line numberDiff line change
@@ -26,60 +26,70 @@
2626
</developer>
2727
</developers>
2828

29+
<properties>
30+
<maven.compiler.source>11</maven.compiler.source>
31+
<maven.compiler.target>11</maven.compiler.target>
32+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
33+
</properties>
34+
35+
<dependencies>
36+
<dependency>
37+
<groupId>org.openapitools</groupId>
38+
<artifactId>openapi-generator</artifactId>
39+
<version>7.8.0</version>
40+
<scope>provided</scope>
41+
</dependency>
42+
<dependency>
43+
<groupId>com.googlecode.java-diff-utils</groupId>
44+
<artifactId>diffutils</artifactId>
45+
<version>1.3.0</version>
46+
<scope>test</scope>
47+
</dependency>
48+
<dependency>
49+
<groupId>com.github.jknack</groupId>
50+
<artifactId>handlebars</artifactId>
51+
<version>4.3.1</version>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.junit.jupiter</groupId>
55+
<artifactId>junit-jupiter</artifactId>
56+
<version>5.10.3</version>
57+
<scope>test</scope>
58+
</dependency>
59+
</dependencies>
60+
2961
<build>
3062
<plugins>
3163
<plugin>
3264
<groupId>org.apache.maven.plugins</groupId>
33-
<artifactId>maven-enforcer-plugin</artifactId>
34-
<version>3.0.0-M1</version>
35-
<executions>
36-
<execution>
37-
<id>enforce-maven</id>
38-
<goals>
39-
<goal>enforce</goal>
40-
</goals>
41-
<configuration>
42-
<rules>
43-
<requireMavenVersion>
44-
<version>2.2.0</version>
45-
</requireMavenVersion>
46-
</rules>
47-
</configuration>
48-
</execution>
49-
</executions>
65+
<artifactId>maven-compiler-plugin</artifactId>
66+
<version>3.13.0</version>
67+
<configuration>
68+
<source>11</source>
69+
<target>11</target>
70+
</configuration>
5071
</plugin>
5172
<plugin>
5273
<groupId>org.apache.maven.plugins</groupId>
5374
<artifactId>maven-surefire-plugin</artifactId>
54-
<version>2.22.2</version>
75+
<version>3.3.1</version>
5576
<configuration>
5677
<argLine>-Xms512m -Xmx1500m</argLine>
5778
<parallel>methods</parallel>
58-
<forkMode>pertest</forkMode>
5979
</configuration>
6080
</plugin>
61-
62-
<!-- attach test jar -->
6381
<plugin>
6482
<groupId>org.apache.maven.plugins</groupId>
65-
<artifactId>maven-jar-plugin</artifactId>
66-
<version>2.2</version>
67-
<executions>
68-
<execution>
69-
<goals>
70-
<goal>jar</goal>
71-
<goal>test-jar</goal>
72-
</goals>
73-
</execution>
74-
</executions>
83+
<artifactId>maven-release-plugin</artifactId>
84+
<version>3.1.1</version>
7585
<configuration>
86+
<releaseProfiles>release</releaseProfiles>
7687
</configuration>
7788
</plugin>
78-
7989
<plugin>
8090
<groupId>org.codehaus.mojo</groupId>
8191
<artifactId>build-helper-maven-plugin</artifactId>
82-
<version>3.0.0</version>
92+
<version>3.6.0</version>
8393
<executions>
8494
<execution>
8595
<id>add_sources</id>
@@ -107,71 +117,9 @@
107117
</execution>
108118
</executions>
109119
</plugin>
110-
<plugin>
111-
<groupId>org.apache.maven.plugins</groupId>
112-
<artifactId>maven-compiler-plugin</artifactId>
113-
<version>3.6.1</version>
114-
<configuration>
115-
<source>11</source>
116-
<target>11</target>
117-
</configuration>
118-
</plugin>
119-
<plugin>
120-
<groupId>org.apache.maven.plugins</groupId>
121-
<artifactId>maven-javadoc-plugin</artifactId>
122-
<version>3.2.0</version>
123-
<configuration>
124-
<source>1.8</source>
125-
<detectJavaApiLink>false</detectJavaApiLink>
126-
<doclint>all,-missing</doclint>
127-
</configuration>
128-
</plugin>
129-
<plugin>
130-
<groupId>org.apache.maven.plugins</groupId>
131-
<artifactId>maven-release-plugin</artifactId>
132-
<version>2.5.3</version>
133-
<configuration>
134-
<releaseProfiles>release</releaseProfiles>
135-
</configuration>
136-
</plugin>
137-
<plugin>
138-
<groupId>org.apache.maven.plugins</groupId>
139-
<artifactId>maven-deploy-plugin</artifactId>
140-
<version>2.8.2</version>
141-
</plugin>
142120
</plugins>
143121
</build>
144-
<dependencies>
145-
<dependency>
146-
<groupId>com.googlecode.java-diff-utils</groupId>
147-
<artifactId>diffutils</artifactId>
148-
<version>1.3.0</version>
149-
<scope>test</scope>
150-
</dependency>
151-
<dependency>
152-
<groupId>org.openapitools</groupId>
153-
<artifactId>openapi-generator</artifactId>
154-
<version>6.6.0</version>
155-
<scope>provided</scope>
156-
</dependency>
157-
<dependency>
158-
<groupId>com.github.jknack</groupId>
159-
<artifactId>handlebars</artifactId>
160-
<version>4.3.1</version>
161-
</dependency>
162-
<dependency>
163-
<groupId>org.junit.jupiter</groupId>
164-
<artifactId>junit-jupiter</artifactId>
165-
<version>5.10.0</version>
166-
<scope>test</scope>
167-
</dependency>
168-
</dependencies>
169-
<properties>
170-
<maven.compiler.source>11</maven.compiler.source>
171-
<maven.compiler.target>11</maven.compiler.target>
172-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
173-
<maven-plugin-version>1.0.0</maven-plugin-version>
174-
</properties>
122+
175123
<profiles>
176124
<profile>
177125
<id>release</id>
@@ -180,18 +128,11 @@
180128
<plugin>
181129
<groupId>org.apache.maven.plugins</groupId>
182130
<artifactId>maven-release-plugin</artifactId>
183-
<version>2.5.3</version>
184-
<dependencies>
185-
<dependency>
186-
<groupId>org.apache.maven.shared</groupId>
187-
<artifactId>maven-invoker</artifactId>
188-
<version>3.0.1</version>
189-
</dependency>
190-
</dependencies>
131+
<version>3.1.1</version>
191132
</plugin>
192133
<plugin>
193134
<artifactId>maven-source-plugin</artifactId>
194-
<version>3.1.0</version>
135+
<version>3.3.1</version>
195136
<executions>
196137
<execution>
197138
<id>attach-sources</id>
@@ -205,7 +146,7 @@
205146
<plugin>
206147
<groupId>org.apache.maven.plugins</groupId>
207148
<artifactId>maven-gpg-plugin</artifactId>
208-
<version>1.6</version>
149+
<version>3.2.4</version>
209150
<executions>
210151
<execution>
211152
<id>sign-artifacts</id>
@@ -219,6 +160,7 @@
219160
<plugin>
220161
<groupId>org.apache.maven.plugins</groupId>
221162
<artifactId>maven-javadoc-plugin</artifactId>
163+
<version>3.7.0</version>
222164
<executions>
223165
<execution>
224166
<id>attach-javadocs</id>
@@ -231,7 +173,7 @@
231173
<plugin>
232174
<groupId>org.sonatype.plugins</groupId>
233175
<artifactId>nexus-staging-maven-plugin</artifactId>
234-
<version>1.6.8</version>
176+
<version>1.7.0</version>
235177
<extensions>true</extensions>
236178
<configuration>
237179
<serverId>ossrh</serverId>
@@ -259,4 +201,4 @@
259201
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
260202
</repository>
261203
</distributionManagement>
262-
</project>
204+
</project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.6.0
1+
7.8.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.6.0
1+
7.8.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.6.0
1+
7.8.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.6.0
1+
7.8.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.6.0
1+
7.8.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.6.0
1+
7.8.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.6.0
1+
7.8.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.6.0
1+
7.8.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.6.0
1+
7.8.0

0 commit comments

Comments
 (0)