File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
scala-console-plugins/src/main/scala/ij_plugins/scala/console/plugins
scala-console/src/main/scala/ij_plugins/scala/console/editor Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -81,10 +81,10 @@ lazy val scala_console = (project in file("scala-console"))
8181 // set the main class for packaging the main jar
8282 // 'run' will still auto-detect and prompt
8383 // change Compile to Test to set it for the test jar
84- Compile / packageBin / mainClass := Some (" net.sf. ij_plugins.scala.console.ScalaConsoleApp" ),
84+ Compile / packageBin / mainClass := Some (" ij_plugins.scala.console.ScalaConsoleApp" ),
8585 // set the main class for the main 'run' task
8686 // change Compile to Test to set it for 'test:run'
87- Compile / run / mainClass := Some (" net.sf. ij_plugins.scala.console.ScalaConsoleApp" ),
87+ Compile / run / mainClass := Some (" ij_plugins.scala.console.ScalaConsoleApp" ),
8888 // // @formatter:off
8989 libraryDependencies ++= Seq (
9090 " com.beachape" %% " enumeratum" % " 1.7.2" ,
@@ -147,7 +147,8 @@ ijRuntimeSubDir := "sandbox"
147147ijPluginsSubDir := " ij-plugins"
148148cleanFiles += ijPluginsDir.value
149149
150- addCommandAlias(" ijRun" , " scala-console-plugins/ijRun" )
150+ addCommandAlias(" ijRun" , " scala_console_plugins/ijRun" )
151+ addCommandAlias(" run" , " scala_console/run" )
151152
152153
153154
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ import scala.collection.mutable.ArrayBuffer
2929import scala .tools .nsc .io .Path
3030
3131/**
32- * Helper methods used in package `net.sf. ij_plugins.scala.console`.
32+ * Helper methods used in package `ij_plugins.scala.console`.
3333 *
3434 * @author Jarek Sacha
3535 * @since 2/17/12
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ object Editor {
4949 * Code input area of the console. Creates MVC components and gives access to the view, and externally relevant
5050 * parts of the model (selection and text) and controller (actions).
5151 *
52- * Publishes event [[net.sf. ij_plugins.scala.console.editor.Editor.SourceFileEvent ]]
52+ * Publishes event [[ij_plugins.scala.console.editor.Editor.SourceFileEvent ]]
5353 */
5454class Editor extends Publisher [EditorEvent ] {
5555
You can’t perform that action at this time.
0 commit comments