diff --git a/README.md b/README.md index 8631a80..9a2728f 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ buildscript { dependencies { // Other dependencies - classpath 'com.github.fartem:flutter-rb-gradle-plugin:1.0.0' + classpath 'com.github.fartem:flutter-rb-gradle-plugin:1.0.1' } } @@ -29,7 +29,7 @@ apply plugin: 'com.smlnskgmail.jaman.flutterrb' dependencies { // Other dependencies - implementation 'com.github.fartem:flutter-rb-gradle-plugin:1.0.0' + implementation 'com.github.fartem:flutter-rb-gradle-plugin:1.0.1' } ``` diff --git a/build.gradle b/build.gradle index d8faeec..a056d34 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { } group 'com.smlnskgmail.jaman.flutterrb' -version '1.0.0' +version '1.0.1' repositories { mavenCentral() diff --git a/src/main/groovy/com/smlnskgmail/jaman/flutterrb/InfoPlugin.groovy b/src/main/groovy/com/smlnskgmail/jaman/flutterrb/InfoPlugin.groovy index 64e94ac..ff5a647 100644 --- a/src/main/groovy/com/smlnskgmail/jaman/flutterrb/InfoPlugin.groovy +++ b/src/main/groovy/com/smlnskgmail/jaman/flutterrb/InfoPlugin.groovy @@ -12,7 +12,9 @@ class InfoPlugin implements Plugin { def output = [ 'version': project.version ] - def outputFile = new File('./flutter_rb_gradle_plugin_output.json') + def outputFile = new File( + "$project.rootDir.path/flutter_rb_gradle_plugin_output.json" + ) outputFile.write( JsonOutput.prettyPrint( JsonOutput.toJson(output)