Fix gradle files to be future proof

This commit is contained in:
Edwin Jakobs
2020-02-26 19:29:22 +01:00
parent f534f47077
commit c55f32915d
21 changed files with 103 additions and 58 deletions

View File

@@ -1,6 +1,6 @@
dependencies {
compile project(":orx-parameters")
compile "org.openrndr.panel:openrndr-panel:$panelVersion"
compile "org.openrndr:openrndr-dialogs:$openrndrVersion"
compile "com.google.code.gson:gson:$gsonVersion"
api project(":orx-parameters")
api "org.openrndr.panel:openrndr-panel:$panelVersion"
implementation "org.openrndr:openrndr-dialogs:$openrndrVersion"
implementation "com.google.code.gson:gson:$gsonVersion"
}