OpenLiberty / liberty-tools-intellij

IntelliJ IDEA extension for Liberty
https://plugins.jetbrains.com/plugin/14856-open-liberty-tools
Eclipse Public License 2.0
12 stars 24 forks source link

Remove the deprecated gradle methods. #969

Open aparnamichael opened 3 weeks ago

aparnamichael commented 3 weeks ago

Remove the deprecated 'buildDir' from build.gradle file.

implementation files(new File(buildDir, 'server'))

Replace 'buildDir' like below: implementation files(new File(project.layout.buildDirectory.asFile.get(), 'server'))

Run the project with params --warning-mode=all to check whether any other deprecated usage is present