Skip to content

2023.2

Latest
Compare
Choose a tag to compare
@hauner hauner released this 20 Dec 07:05

This version will only work with gradle 7+, use 2021.3 with gradle 5.5+

#17, version check

the plugin can now check if there is a newer version of the gradle plugin or a processor if the processor supports it.

// build.gradle

openapiProcessor {
  checkUpdates "never"  // default
  //checkUpdates "daily"
  //checkUpdates "always"
}

see the documentation for more.

snapshot repository

the plugin does no longer automatically add the openapi-processor snapshot repository to the repositories to avoid overriding the repositories set in settings.gradle(.kts).

It can be enabled by adding openapi-processor-gradle.snapshots = true to the gradle.properties file.

The plugin does not add any repository unless the property is set.