File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/main/groovy/com/github/mrsarm/jshell/plugin Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
66}
77
88group ' com.github.mrsarm'
9- version ' 1.2.0-RC1 '
9+ version ' 1.2.0-RC2 '
1010
1111sourceCompatibility = 9
1212targetCompatibility = 9
Original file line number Diff line number Diff line change @@ -57,7 +57,8 @@ class JShellPlugin implements Plugin<Project> {
5757 jshellTask. logger. info(" :jshell couldn't find the classpath, adding " +
5858 ' the following paths from project sourceSets: {}' , classesPaths)
5959 pathSet. addAll(classesPaths)
60- List<String > depsPaths = project. configurations. default. collect { it. getPath() }
60+ List<String > depsPaths = project. configurations. compileClasspath. collect { it. getPath() }
61+ depsPaths. addAll(project. configurations. runtimeClasspath. collect { it. getPath() })
6162 jshellTask. logger. info(" :jshell couldn't find the dependencies' classpath, adding " +
6263 ' the following paths from project configurations: {}' , depsPaths)
6364 pathSet. addAll(depsPaths)
You can’t perform that action at this time.
0 commit comments