No signature of method: org.gradle.util.Path.plus() is applicable for argument types: (java.lang.String) values: [/docs/]
Possible solutions: path(java.lang.String), is(java.lang.Object), split(groovy.lang.Closure), use([Ljava.lang.Object;), wait(), dump()
Line from build.gradle
projectPath = project.projectDir.toString()
Line in my subproject build.gradle
def locateDocshome= projectPath + ‘/docs/’
Here is some more information and how I duplicated it in a much smaller build.gradle
create a folder
create build.gradle using below content minus the start/end lines
create a wrapper with 3.2.1 bin version
gradle wrapper
./gradlew tasks
this should work just fine
change to 3.3 by modifying the gradle/wrapper/gradle-wrapper.properties change 3.2.1 to 3.3
./gradlew wrapper
Failure occurs on line 7
No signature of method: org.gradle.util.Path.plus() is applicable for argument types: (java.lang.String) values: [/docs/]
Possible solutions: path(java.lang.String), use([Ljava.lang.Object;), is(java.lang.Object), split(groovy.lang.Closure), wait(), grep()
//****** START of build.gradle *************
apply plugin: ‘java’