Skip to content

Commit 1352dba

Browse files
committed
Swagger Spec -> OpenAPI Spec
1 parent c47e57b commit 1352dba

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The goal of Swagger™ is to define a standard, language-agnostic interface to R
77

88
Swagger-core is the Java implementation of Swagger. Current version supports *JAX-RS* and plain servlets. Integration with the Play! framework has been moved to [Swagger-Play](https://github.com/swagger-api/swagger-play).
99

10-
Check out [Swagger-Spec](https://github.com/swagger-api/swagger-spec) for additional information about the Swagger project, including additional libraries with support for SpringMVC, other languages and more.
10+
Check out [Swagger-Spec](https://github.com/OAI/OpenAPI-Specification) for additional information about the Swagger project, including additional libraries with support for SpringMVC, other languages and more.
1111

1212
![Swagger Screenshot](https://raw.github.com/swagger-api/swagger-core/master/swagger-shot.jpg)
1313

@@ -26,9 +26,9 @@ The following methods are available to obtain support for Swagger:
2626
See the guide on [getting started with swagger](https://github.com/swagger-api/swagger-core/wiki/Swagger-Core-JAX-RS-Project-Setup-1.5.X) to get started with adding swagger to your API.
2727

2828
## Compatibility
29-
The Swagger Specification has undergone 3 revisions since initial creation in 2010. The swagger-core project has the following compatibilities with the swagger specification:
29+
The OpenAPI Specification has undergone 3 revisions since initial creation in 2010. The swagger-core project has the following compatibilities with the OpenAPI Specification:
3030

31-
Swagger core Version | Release Date | Swagger Spec compatibility | Notes | Status
31+
Swagger core Version | Release Date | OpenAPI Spec compatibility | Notes | Status
3232
------------------------- | ------------ | -------------------------- | ----- | ----
3333
1.5.6-SNAPSHOT | | 2.0 | [master](https://github.com/swagger-api/swagger-core) | Under Development
3434
1.5.5 (**current stable**)| 2015-10-19 | 2.0 | [tag v1.5.4](https://github.com/swagger-api/swagger-core/tree/v1.5.4) | Supported
@@ -40,7 +40,7 @@ Swagger core Version | Release Date | Swagger Spec compatibility | Notes |
4040
To allow independent development, scala support has been moved into a separate project. See the [swagger-scala-module](https://github.com/swagger-api/swagger-scala-module) for details. Play! framework support is moving outside the swagger-core project as well.
4141

4242
## Overview
43-
This is a project to build the swagger-core library, which is required for the Swagger implementation of the Swagger spec.
43+
This is a project to build the swagger-core library, which is required for the Swagger implementation of the OpenAPI Spec.
4444

4545
### Change History
4646
If you're interested in the change history of swagger and the swagger-core framework, see [here](https://github.com/swagger-api/swagger-core/wiki/Changelog).

modules/swagger-annotations/src/main/java/io/swagger/annotations/Contact.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/**
2525
* Contact metadata available within the info section of a Swagger definition - see
26-
* https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md#contactObject
26+
* https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#contactObject
2727
*
2828
* @since 1.5.0
2929
*/

modules/swagger-annotations/src/main/java/io/swagger/annotations/Info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/**
2525
* High-level metadata for a Swagger definition - see
26-
* https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md#infoObject
26+
* https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#infoObject
2727
*
2828
* @since 1.5.0
2929
*/

modules/swagger-annotations/src/main/java/io/swagger/annotations/License.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/**
2525
* License metadata available within the info section of a Swagger definition, see
26-
* https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md#licenseObject
26+
* https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#licenseObject
2727
*
2828
* @since 1.5.0
2929
*/

modules/swagger-annotations/src/main/java/io/swagger/annotations/SwaggerDefinition.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
* Global level consumes for this swagger definition.
5555
* <p>
5656
* These will be added to all api definitions that don't have local overrides - see
57-
* https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md#swagger-object
57+
* https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#swagger-object
5858
*
5959
* @return a list of global level consumes.
6060
*/
@@ -64,7 +64,7 @@
6464
* Global level produces for this swagger definition.
6565
* <p>
6666
* These will be added to all api definitions that don't have local overrides - see
67-
* https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md#swagger-object
67+
* https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#swagger-object
6868
*
6969
* @return a list of global level consumes
7070
*/
@@ -82,7 +82,7 @@
8282
/**
8383
* Global tags that can be used to tag individual Apis and ApiOperations.
8484
* <p>
85-
* See https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md#tagObject
85+
* See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#tagObject
8686
*
8787
* @return list of globally defined tags
8888
*/
@@ -93,7 +93,7 @@
9393
/**
9494
* General metadata for this Swagger definition.
9595
* <p>
96-
* See https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md#infoObject
96+
* See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#infoObject
9797
*
9898
* @return general metadata for this Swagger definition
9999
*/

modules/swagger-annotations/src/main/java/io/swagger/annotations/Tag.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import java.lang.annotation.Target;
2323

2424
/**
25-
* A definition level Tag object see https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md#tag-object
25+
* A definition level Tag object see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#tag-object
2626
*
2727
* @since 1.5.0
2828
*/

modules/swagger-models/src/main/java/io/swagger/models/ExternalDocs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import java.util.Map;
88

99
/**
10-
* Container for a <a href="https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md#externalDocumentationObject">External Documentation Object</a>.
10+
* Container for a <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#externalDocumentationObject">External Documentation Object</a>.
1111
*/
1212
public class ExternalDocs {
1313
/**

0 commit comments

Comments
 (0)