Skip to content

Commit 9866ed2

Browse files
committed
Correct package names
1 parent 2fc31b9 commit 9866ed2

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

build.sbt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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"
147147
ijPluginsSubDir := "ij-plugins"
148148
cleanFiles += 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

scala-console-plugins/src/main/scala/ij_plugins/scala/console/plugins/package.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import scala.collection.mutable.ArrayBuffer
2929
import 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

scala-console/src/main/scala/ij_plugins/scala/console/editor/Editor.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
*/
5454
class Editor extends Publisher[EditorEvent] {
5555

0 commit comments

Comments
 (0)