Initialize Idea project.
This commit is contained in:
commit
646c38282f
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
.idea
|
||||||
|
.bsp
|
||||||
|
target
|
||||||
|
/../target
|
9
build.sbt
Normal file
9
build.sbt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
ThisBuild / version := "0.1.0-SNAPSHOT"
|
||||||
|
|
||||||
|
ThisBuild / scalaVersion := "3.3.3"
|
||||||
|
|
||||||
|
lazy val root = (project in file("."))
|
||||||
|
.settings(
|
||||||
|
name := "untitled",
|
||||||
|
idePackagePrefix := Some("com.voronind.doublegis.test")
|
||||||
|
)
|
1
project/build.properties
Normal file
1
project/build.properties
Normal file
|
@ -0,0 +1 @@
|
||||||
|
sbt.version = 1.10.2
|
1
project/plugins.sbt
Normal file
1
project/plugins.sbt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
addSbtPlugin("org.jetbrains.scala" % "sbt-ide-settings" % "1.1.2")
|
6
src/main/scala/main.scala
Normal file
6
src/main/scala/main.scala
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
package com.voronind.doublegis.test
|
||||||
|
|
||||||
|
@main
|
||||||
|
def main(): Unit = {
|
||||||
|
println("Hello world!")
|
||||||
|
}
|
Reference in a new issue