From f24f2d15275961f1c0144e68fde75a60aeaaa165 Mon Sep 17 00:00:00 2001 From: Julio Capote Date: Mon, 23 Jan 2023 22:20:47 -0500 Subject: move to bear theme --- ...2-11-01-base-a-scala-project-generator.markdown | 40 ---------------------- 1 file changed, 40 deletions(-) delete mode 100644 content/post/2012-11-01-base-a-scala-project-generator.markdown (limited to 'content/post/2012-11-01-base-a-scala-project-generator.markdown') diff --git a/content/post/2012-11-01-base-a-scala-project-generator.markdown b/content/post/2012-11-01-base-a-scala-project-generator.markdown deleted file mode 100644 index da4bab7..0000000 --- a/content/post/2012-11-01-base-a-scala-project-generator.markdown +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: "Base: A Scala Project Generator" -date: 2012-11-01T14:39:00Z -comments: true -tags: ["efficiency", "scala", "shell scripting"] ---- - -Finally got tired of copy pasting other projects and gutting them to make new ones, so I created [base](http://github.com/capotej/base), a shell command that creates new scala projects. - - - -Creating the project: - -```sh -$ base new com.capotej.newproj -creating project: newproj - creating App.scala - creating AppSpec.scala - creating pom.xml - creating .gitignore - creating .travis.yml - creating LICENSE - creating README.markdown -Done! run mvn scala:run to run your projec -``` - -Based on the package name, it infered that the project name is ```newproj``` and created the project under that folder. Let's build and run it: - -```sh -$ cd newproj -$ mvn compile scala:run -(... maven output ...) -hello world -``` - -This uses the new incremental compiler for maven, [zinc](http://github.com/typesafehub/zinc), which dramatically speeds up compile times (except for the first time you run it). It also sets you up with the latest scalatest maven plugin, which gives you sweet looking test output, like so: - -![](https://i.imgur.com/qyyem.png) - -See the base [README](http://github.com/capotej/base#readme) for installation instructions. -- cgit v1.2.3