Skip to content

Commit 04c8bb1

Browse files
authored
Merge branch 'master' into aspnetcore3
2 parents 70b498e + b4dfdf5 commit 04c8bb1

File tree

374 files changed

+12223
-860
lines changed

Some content is hidden

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

374 files changed

+12223
-860
lines changed

.gitignore

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,6 @@
1414
# Mobile Tools for Java (J2ME)
1515
.mtj.tmp/
1616

17-
# Package Files #
18-
*.jar
19-
*.war
20-
*.ear
21-
*.zip
22-
*.tar.gz
23-
*.rar
24-
2517
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2618
hs_err_pid*
2719

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,15 +178,15 @@
178178
APPENDIX: How to apply the Apache License to your work.
179179

180180
To apply the Apache License to your work, attach the following
181-
boilerplate notice, with the fields enclosed by brackets "{}"
181+
boilerplate notice, with the fields enclosed by brackets "[]"
182182
replaced with your own identifying information. (Don't include
183183
the brackets!) The text should be enclosed in the appropriate
184184
comment syntax for the file format. We also recommend that a
185185
file or class name and description of purpose be included on the
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright {yyyy} {name of copyright owner}
189+
Copyright 2020 SmartBear Software Inc.
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# <img src="https://raw.githubusercontent.com/swagger-api/swagger.io/wordpress/images/assets/SWC-logo-clr.png" height="80">
22

3-
- Master: [![Build Status](https://img.shields.io/jenkins/s/https/jenkins.swagger.io/view/OSS%20-%20Java/job/oss-swagger-codegen-generators-master-java-8.svg)](https://jenkins.swagger.io/view/OSS%20-%20Java/job/oss-swagger-codegen-generators-master-java-8)
3+
- Master: [![Build Status](https://img.shields.io/jenkins/build.svg?jobUrl=https://jenkins.swagger.io/job/oss-swagger-codegen-generators-master-java-8)](https://jenkins.swagger.io/view/OSS%20-%20Java/job/oss-swagger-codegen-generators-master-java-8)
44

55
[![Build Status](https://jenkins.swagger.io/view/OSS%20-%20Java/job/oss-swagger-codegen-generators-master-java-8/badge/icon?subject=jenkins%20build%20-%20master)](https://jenkins.swagger.io/view/OSS%20-%20Java/job/oss-swagger-codegen-generators-master-java-8/)
66

@@ -35,20 +35,3 @@ The Swagger Codegen project is intended as a benefit for users of the Swagger /
3535
* Generated code is intentionally _not_ subject to the parent project license
3636

3737
When code is generated from this project, it shall be considered **AS IS** and owned by the user of the software. There are no warranties--expressed or implied--for generated code. You can do what you wish with it, and once generated, the code is your responsibility and subject to the licensing terms that you deem appropriate.
38-
39-
## License
40-
41-
```
42-
Copyright 2019 SmartBear Software
43-
44-
Licensed under the Apache License, Version 2.0 (the "License");
45-
you may not use this file except in compliance with the License.
46-
You may obtain a copy of the License at [apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
47-
48-
Unless required by applicable law or agreed to in writing, software
49-
distributed under the License is distributed on an "AS IS" BASIS,
50-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
51-
See the License for the specific language governing permissions and
52-
limitations under the License.
53-
```
54-

pom.xml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>io.swagger.codegen.v3</groupId>
1414
<artifactId>swagger-codegen-generators</artifactId>
15-
<version>1.0.14-SNAPSHOT</version>
15+
<version>1.0.20-SNAPSHOT</version>
1616
<packaging>jar</packaging>
1717

1818
<build>
@@ -208,6 +208,12 @@
208208
<artifactId>testng</artifactId>
209209
<version>${testng-version}</version>
210210
<scope>test</scope>
211+
<exclusions>
212+
<exclusion>
213+
<artifactId>snakeyaml</artifactId>
214+
<groupId>org.yaml</groupId>
215+
</exclusion>
216+
</exclusions>
211217
</dependency>
212218
<dependency>
213219
<groupId>org.slf4j</groupId>
@@ -246,10 +252,10 @@
246252
</dependency>
247253
</dependencies>
248254
<properties>
249-
<swagger-codegen-version>3.0.14-SNAPSHOT</swagger-codegen-version>
250-
<swagger-parser-version>2.0.15</swagger-parser-version>
251-
<swagger-core-version>2.0.10</swagger-core-version>
252-
<jackson-version>2.9.10</jackson-version>
255+
<swagger-codegen-version>3.0.20-SNAPSHOT</swagger-codegen-version>
256+
<swagger-parser-version>2.0.20-SNAPSHOT</swagger-parser-version>
257+
<swagger-core-version>2.1.2</swagger-core-version>
258+
<jackson-version>2.10.3</jackson-version>
253259
<scala-version>2.11.1</scala-version>
254260
<felix-version>3.3.0</felix-version>
255261
<commons-io-version>2.4</commons-io-version>

0 commit comments

Comments
 (0)