Merge pull request #1 from nasrlol/chore/project-structure

setup of the project structure
This commit is contained in:
Abdellah El Morabit 2025-11-15 16:08:35 +01:00 committed by GitHub
commit 3b21664094
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 29 additions and 2 deletions

20
.gitignore vendored
View File

@ -1,5 +1,21 @@
# Scala + sbt build artifacts
target/
project/target/
project/project/
# Metals + BSP cache
.metals/
.bsp/
# Java / JVM artifacts
*.class
*.log
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# IntelliJ
.idea/
*.iml
# VSCode
.vscode/

5
build.sbt Normal file
View File

@ -0,0 +1,5 @@
scalaVersion := "3.7.4"
version := "1.0"
name := "torque"
organization := "com.nsrddyn"

1
project/build.properties Normal file
View File

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

View File

@ -0,0 +1,5 @@
package com.nsrddyn
def main(args: Array[String]) : Unit = {
println("Hello World!")
}