score:1
Accepted answer
To start a new Mill project without any SBT, I can think of these two possibilities:
Start from scratch
I usually start with an empty folder and add an empty build.sc
.
To setup the few needed folders and configurations is sometime faster than to remove all the stuff not needed in the Template.
Create your own Giter8 Template
If you start a lot of Projects - you can create your own Giter8 Template.
This is straight forward and there is also a command-line tool that works without sbt.
For example:
g8 playframework/play-scala-seed.g8
Creates the Play Template you already used.
See here for more information: http://www.foundweekends.org/giter8/
Source: stackoverflow.com
Related Query
- How do I set up a PlayFramework project using the mill build tool, and without using SBT?
- How can I print all the settings in Test configuration for a project build using SBT?
- How to write this for iteration in scala without using the For( loop; if condition) and still use yield properlly
- How do I set the Scala compiler to use a plugin when I build using Maven?
- How is sorted set ordered without Ordering provided and how does the equality of elements work with Ordering
- Without using var, what is the way to invalidate a static value in Scala and set it again to new value later
- How to convert set of chacraters into ASCII and print the character that repeted odd number of times using SCALA
- How to call the scala interpreter in a Simple Build Tool project?
- How to download and save a file from the internet using Scala?
- How to set an expected exception using Scala and JUnit 4
- How to set the default project for SBT
- How to return all positives and the first negative number in a list using functional programming?
- How can I syntax check a Scala script without executing the script and generating any class files?
- How do I run the Spark decision tree with a categorical feature set using Scala?
- How to call the correct method in Scala/Java based the types of two objects without using a switch statement?
- How to show images using Play framework and Scala in the view page
- how to get the sub project path in sbt multi project build
- How do I set the scala sdk using gradle in Idea module?
- how to build a graph from tuples in graphx and label the nodes after ?
- Scala: How do I calculate the variance of a Seq[Double] using flatMap and Options?
- Play: How to remove the fields without value from JSON and create a new JSON with them
- How to share code between project and build definition project in SBT
- How to set settings for a subproject in sbt shell (without using project command)?
- SBT - Multi project merge strategy and build sbt structure when using assembly
- how to set system properties by using -D when running Scalatest in a Maven project
- clear instructions on using scalatest with the simple build tool
- SBT: How to publish both the aggregate project and all modules on Sonatype?
- How Scala achieve performance improvement for Map and Set by using different Class based on size?
- How to fix "InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty" in scala's build tool (sbt)?
- Scala: How to invoke method with type parameter and manifest without knowing the type at compile time?
More Query from same tag
- How to create Async[Future] from Async[IO]
- Transform a case class to another by unwrapping types in Scala 3
- SPARK-Read file with multi character delimiter with multiline option
- Spark Graphx java.lang.OutOfMemoryError
- How to Post a Json body from a java/jackson Object in Gatling 2
- I have a map that i want to delete entries from by value
- Scala: Overwriting a Generic Java Method that returns null
- Enforce type difference
- How to split strings into characters in Scala
- Overloaded Methode value run with Alternatives in Sring Boot
- Assigning new autoincrement id to returned SQL result in Anorm
- Scala Get List of last 12 months from given month
- How to override implicit Action val into Play framework 2
- Calling a "static function" of a generic type in Scala
- Throttle concurrent HTTP requests from Spark executors
- For loop in scala without sequence?
- Why defining a wrapping method over another method with an implicit argument doesn't work?
- Is it possible in Scala to force the caller to specify a type parameter for a polymorphic method?
- Connecting to postgresql db in Spark application running on the Bluemix Apache-Spark service
- How to convert array in a df cell to individual column names?
- How to unitest gauge metrics in flink
- Run tests in broken project using SBT
- Scala- Conscript - "An unexpected error occurred: Please check your internet connection"
- Flink Metrics name collision
- Spark Scala Split dataframe into equal number of rows
- How to get the difference between two timestamps in scala
- How to write contents of RDD onto S3?
- How to use Scala UDF in PySpark?
- Dynamic JSON Creation in Play
- Scala Play + Slick: How to inject dependencies to Spec tests?