可以使用 Gradle 来管理 Scala 项目, 和管理 Java 的项目是一样的.
目录结构
1 2 3 4 5 6 7 8 9 10 11 12
| scala ├── build.gradle └── src ├── main │ ├── java │ ├── resources │ └── scala │ └── AppDemo.scala └── test ├── java ├── resources └── scala
|
初始文件
build.gradle 的内容为:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| plugins { id 'java' id 'scala' id 'application' id 'com.github.johnrengelman.shadow' version '4.0.3' }
dependencies { compile "org.scala-lang:scala-library:2.12.7" compile "org.scala-lang:scala-compiler:2.12.7" compile "org.scala-lang:scala-reflect:2.12.7" }
ext { project.mainClassName = System.getProperty("mainClass", "AppDemo") }
shadowJar { mergeServiceFiles('META-INF/spring.*') }
|
插件 shadowJar 用于项目打包, 更多信息请参考 https://qtdebug.com/misc-gradle-app/
AppDemo.scala 的内容为:
1 2 3 4 5
| object AppDemo { def main(args: Array[String]): Unit = { println("Hello World") } }
|
运行打包