Skip to content
Snippets Groups Projects
Commit 8466f072 authored by Erick Lavoie's avatar Erick Lavoie
Browse files

Added packaging instructions

parent feaeb7bd
No related branches found
No related tags found
No related merge requests found
...@@ -4,14 +4,38 @@ ...@@ -4,14 +4,38 @@
sbt >= 1.4.7 sbt >= 1.4.7
```` ````
Should be available by default on the IC Cluster. Otherwise, refer to each project installation instructions.
# Usage # Usage
Compute predictions: ## Compute predictions
```` ````
sbt 'runMain predict.Predictor' sbt 'runMain predict.Predictor'
```` ````
Compute recommendations: ## Compute recommendations
```` ````
sbt 'runMain recommend.Recommender' sbt 'runMain recommend.Recommender'
```` ````
## Package for submission
Update the ````name````, ````maintainer```` fields of ````build.sbt````, with the correct Milestone number, your ID, and your email.
Package your application:
````
sbt 'show dist'
````
You should should see an output like:
````
[info] Your package is ready in [...]/target/universal/m1_your_id-1.0.zip
````
Combine this package, along side your report and any other files mentioned in the Milestone description (see Section ````Deliverables````). Submit to the TA for grading.
# References
Essential sbt: https://www.scalawilliam.com/essential-sbt/
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.0" % Test libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.0" % Test
scalaVersion in ThisBuild := "2.13.3" scalaVersion in ThisBuild := "2.13.3"
enablePlugins(JavaAppPackaging) enablePlugins(JavaAppPackaging)
name := "m1_yourid"
version := "1.0"
maintainer := "your.name@epfl.ch"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment