Closed
Description
The master branch uses the last rc release of swagger-parser-v3
as dependency:
<dependency>
<groupId>io.swagger.parser.v3</groupId>
<artifactId>swagger-parser-v3</artifactId>
<version>2.0.0.unblu-3</version>
</dependency>
Maybe an other branch (develop
or swagger-snapshot
) could be added to this repository in order to use 2.0.0-SNAPSHOT
as dependency:
<dependency>
<groupId>io.swagger.parser.v3</groupId>
<artifactId>swagger-parser-v3</artifactId>
<version>2.0.0-SNAPSHOT</version>
</dependency>
This way, when the next rc is released, the necessary work would already be prepared on this new branch.
The only breaking change I have found so far is:
swagger-api/swagger-core@9674c95
If you are interested, I would submit a Pull Request in order to fix the build for this branch.