Skip to content

Instantly share code, notes, and snippets.

@DmytroMitin
Created April 2, 2025 00:52
Show Gist options
  • Save DmytroMitin/1e9f57c14e301daa47c142c1625b0cfe to your computer and use it in GitHub Desktop.
Save DmytroMitin/1e9f57c14e301daa47c142c1625b0cfe to your computer and use it in GitHub Desktop.
plugins {
id 'scala'
id 'application'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
zinc ("com.typesafe.zinc:zinc:1.10.8"){
exclude( group: "org.scala-lang", module: "scala-library")
}
zinc "org.scala-lang:scala-library"
zinc "org.scala-lang:scala-compiler"
}
application {
mainClass = 'com.example.SMain'
}
scala {
scalaVersion = '2.12.15'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment