File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
src/main/groovy/com/marklogic/gradle/task/shell Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ plugins {
1212}
1313
1414group = " com.marklogic"
15- version = " 4.3.1 "
15+ version = " 4.3.2-SNAPSHOT "
1616
1717sourceCompatibility = " 8"
1818targetCompatibility = " 8"
Original file line number Diff line number Diff line change @@ -19,13 +19,14 @@ import org.gradle.api.tasks.TaskAction
1919 */
2020class ShellTask extends JavaExec {
2121
22- ShellTask () {
23- mainClass. set(" com.marklogic.groovysh.Main" )
24- }
25-
22+ // This no longer specifies a mainClass, as the way that's done changed between Gradle 6.3 and 6.6.
23+ // The docs for this task will be updated so that a user knows how to set the mainClass in the rare event
24+ // that this task is actually used (this was included as a prototype and likely should never have been registered
25+ // in MarkLogicPlugin).
26+
2627 @TaskAction
2728 @Override
28- public void exec () {
29+ void exec () {
2930 setStandardInput(System . in )
3031
3132 Project project = getProject()
You can’t perform that action at this time.
0 commit comments