Skip to content

Commit

Permalink
0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
galovics committed Nov 20, 2018
1 parent 538ba19 commit f2eb38e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ There are 2 properties which are mandatory for this reason:
Apply the plugin in `build.gradle`:
```groovy
plugins {
id 'swagger-brake'
id 'io.redskap.swagger-brake'
}
```

```groovy
apply plugin: 'swagger-brake'
apply plugin: 'io.redskap.swagger-brake'
```

Configure the plugin:
Expand Down
12 changes: 9 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ plugins {
}

group 'io.redskap'
version '0.0.1-SNAPSHOT'
version '0.1.0'

sourceCompatibility = 1.8

gradlePlugin {
plugins {
swaggerBrake {
id = 'swagger-brake'
description = 'Swagger Brake Gradle plugin'
id = 'io.redskap.swagger-brake'
implementationClass = 'io.redskap.swagger.brake.gradle.SwaggerBrakePlugin'
}
}
Expand All @@ -24,7 +23,14 @@ gradlePlugin {
pluginBundle {
website = 'http://redskap.io'
vcsUrl = 'https://github.com/redskap/swagger-brake-gradle'
description = 'A plugin to check Swagger definition files for any breaking API changes'
tags = ['swagger', 'api', 'breaking-change', 'REST']

plugins {
swaggerBrake {
displayName = 'Swagger Brake Gradle plugin'
}
}
}

repositories {
Expand Down

0 comments on commit f2eb38e

Please sign in to comment.