File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,8 @@ ENV ANDROID_HOME=/usr/lib/android-sdk
85
85
# Set the appropriate permissions.
86
86
RUN if [ "$GRADLE" = "yes" ]; then sudo chown -R buildfs:buildfs ${ANDROID_SDK_ROOT}; fi
87
87
88
- COPY ./gradle-instrumentation ${HOME}/gradle-instrumentation
88
+ COPY ./gradle-instrumentation/buildfs-gradle-plugin ${HOME}/gradle-instrumentation
89
+ COPY ./gradle-instrumentation/fsgradle-gradle ${SCRIPTS_DIR}
89
90
90
91
# Build Gradle plugin
91
92
WORKDIR $HOME/gradle-instrumentation
Original file line number Diff line number Diff line change @@ -93,14 +93,14 @@ function fetch_project()
93
93
94
94
instrument_build_script ()
95
95
{
96
- plugin=" $PLUGIN_JAR_DIR /gradle-instrumentation.jar"
96
+ plugin=" $PLUGIN_JAR_DIR /gradle-instrumentation-1.0 .jar"
97
97
if [ " $1 " = " groovy" ]; then
98
98
buildscript=" buildscript { dependencies { classpath files('$plugin ') } }\n"
99
- applyplug=" apply plugin: 'org.fsracer .gradle.fsracer -plugin'"
99
+ applyplug=" apply plugin: 'org.buildfs .gradle.buildfs -plugin'"
100
100
build_file=" build.gradle"
101
101
else
102
102
buildscript=" buildscript { dependencies { classpath(files(\" $plugin \" )) } }\n"
103
- applyplug=" apply(plugin=\" org.fsracer .gradle.fsracer -plugin\" )"
103
+ applyplug=" apply(plugin=\" org.buildfs .gradle.buildfs -plugin\" )"
104
104
build_file=" build.gradle.kts"
105
105
fi
106
106
# Heuristic: Search for file whose name is build.gradle.[kts]
You can’t perform that action at this time.
0 commit comments