Skip to content

Commit e090999

Browse files
committed
2021-07-24 v. 1.0.1: fixed output path
1 parent d14cbc1 commit e090999

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ buildscript {
2121
2222
dependencies {
2323
// Other dependencies
24-
classpath 'com.github.fartem:flutter-rb-gradle-plugin:1.0.0'
24+
classpath 'com.github.fartem:flutter-rb-gradle-plugin:1.0.1'
2525
}
2626
}
2727
2828
apply plugin: 'com.smlnskgmail.jaman.flutterrb'
2929
3030
dependencies {
3131
// Other dependencies
32-
implementation 'com.github.fartem:flutter-rb-gradle-plugin:1.0.0'
32+
implementation 'com.github.fartem:flutter-rb-gradle-plugin:1.0.1'
3333
}
3434
```
3535

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group 'com.smlnskgmail.jaman.flutterrb'
9-
version '1.0.0'
9+
version '1.0.1'
1010

1111
repositories {
1212
mavenCentral()

src/main/groovy/com/smlnskgmail/jaman/flutterrb/InfoPlugin.groovy

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ class InfoPlugin implements Plugin<Project> {
1212
def output = [
1313
'version': project.version
1414
]
15-
def outputFile = new File('./flutter_rb_gradle_plugin_output.json')
15+
def outputFile = new File(
16+
"$project.rootDir.path/flutter_rb_gradle_plugin_output.json"
17+
)
1618
outputFile.write(
1719
JsonOutput.prettyPrint(
1820
JsonOutput.toJson(output)

0 commit comments

Comments
 (0)