Initialize Idea project.

This commit is contained in:
Dmitry Voronin 2024-09-23 10:54:27 +03:00
commit 646c38282f
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k
5 changed files with 21 additions and 0 deletions

4
.gitignore vendored Normal file
View file

@ -0,0 +1,4 @@
.idea
.bsp
target
/../target

9
build.sbt Normal file
View 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
View file

@ -0,0 +1 @@
sbt.version = 1.10.2

1
project/plugins.sbt Normal file
View file

@ -0,0 +1 @@
addSbtPlugin("org.jetbrains.scala" % "sbt-ide-settings" % "1.1.2")

View file

@ -0,0 +1,6 @@
package com.voronind.doublegis.test
@main
def main(): Unit = {
println("Hello world!")
}