vidakovic commented on a change in pull request #1402:
URL: https://github.com/apache/fineract/pull/1402#discussion_r504610946
##########
File path: build.gradle
##########
@@ -46,6 +56,7 @@ buildscript {
plugins {
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'com.diffplug.spotless' version '5.6.1'
+ id 'org.openapi.generator' version '4.3.1'
Review comment:
This is just to define the plugin dependencies. We could also do
something like this:
```
...
id 'org.openapi.generator' version '4.3.1' apply false
...
```
Then this is really just declaring a dependency (much like the
dependencyManagement section) and the respective plugins would only be
activated with (same example):
```
apply plugin: 'org.openapi.generator'
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]