Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ You need the following installed and available in your $PATH:
* Jackson 2.4.5 or greater


### To build from source (currently 2.0.0-SNAPSHOT)
### To build from source (currently 2.0.0)
```
# first time building locally
mvn -N
Expand Down Expand Up @@ -105,6 +105,7 @@ limitations under the License.
* rework JsonProperty, readonly/writeonly support (#2169)
* JsonIdentity support (#2704)
* Complex types support in @ExtensionProperty (#2723)
* Adds `openapi.json` and `openapi.yaml` to known locations (#2727)

### Bug fixes:

Expand Down
4 changes: 2 additions & 2 deletions modules/swagger-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<parent>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-project</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
<packaging>bundle</packaging>
<name>swagger-annotations</name>
<build>
Expand Down
2 changes: 1 addition & 1 deletion modules/swagger-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-project</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
6 changes: 3 additions & 3 deletions modules/swagger-integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<parent>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-project</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
<relativePath>../..</relativePath>
</parent>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-integration</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
<packaging>bundle</packaging>
<name>swagger-integration</name>
<dependencies>
Expand Down Expand Up @@ -53,6 +53,6 @@
</plugins>
</build>
<properties>
<swagger.version>2.0.0-SNAPSHOT</swagger.version>
<swagger.version>2.0.0</swagger.version>
</properties>
</project>
4 changes: 2 additions & 2 deletions modules/swagger-jaxrs2-servlet-initializer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>swagger-project</artifactId>
<groupId>io.swagger.core.v3</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
<relativePath>../../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -174,6 +174,6 @@
</dependency>
</dependencies>
<properties>
<swagger.version>2.0.0-SNAPSHOT</swagger.version>
<swagger.version>2.0.0</swagger.version>
</properties>
</project>
10 changes: 5 additions & 5 deletions modules/swagger-jaxrs2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>swagger-project</artifactId>
<groupId>io.swagger.core.v3</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
<relativePath>../../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -257,9 +257,9 @@
</dependency>
</dependencies>
<properties>
<models.version>2.0.0-SNAPSHOT</models.version>
<annotations.version>2.0.0-SNAPSHOT</annotations.version>
<core.version>2.0.0-SNAPSHOT</core.version>
<integration.version>2.0.0-SNAPSHOT</integration.version>
<models.version>2.0.0</models.version>
<annotations.version>2.0.0</annotations.version>
<core.version>2.0.0</core.version>
<integration.version>2.0.0</integration.version>
</properties>
</project>
2 changes: 1 addition & 1 deletion modules/swagger-models/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-project</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<artifactId>swagger-project</artifactId>
<packaging>pom</packaging>
<name>swagger-project</name>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
<url>https://github.com/swagger-api/swagger-core</url>
<scm>
<connection>scm:git:git@github.com:swagger-api/swagger-core.git</connection>
Expand Down