Created
April 2, 2025 00:52
-
-
Save DmytroMitin/1e9f57c14e301daa47c142c1625b0cfe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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