Open szhem opened 7 years ago
Currently plugin configures IntelliJ Idea only from java source sets
project.idea { module { project.sourceSets.jmh.java.srcDirs.each { testSourceDirs += project.file(it) } } }
... this means, that benchmark sources written in scala and located in src/jmh/scala directory will not be picked up by IDE correctly
src/jmh/scala
I believe that it should be enough to modify the snippet of IDE configuration as the following
project.idea { module { project.sourceSets.jmh.java.srcDirs.each { testSourceDirs += project.file(it) } project.sourceSets.jmh.scala.srcDirs.each { testSourceDirs += project.file(it) } } }
... to support scala benchmarks as well as java ones
Currently plugin configures IntelliJ Idea only from java source sets
... this means, that benchmark sources written in scala and located in
src/jmh/scala
directory will not be picked up by IDE correctlyI believe that it should be enough to modify the snippet of IDE configuration as the following
... to support scala benchmarks as well as java ones