summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authormokha <mokha@cisco.com>2019-05-13 21:10:19 -0600
committermokha <mokha@cisco.com>2019-05-13 21:10:19 -0600
commitc4001d1614f80ce034a2c2cb49aa1e4b9bf19880 (patch)
treea5225fc69815b34402b0c2cfce5b5bbd89f8ad42 /Rakefile
parent3114296c555d678ba1cff5bd9fb473616378ee94 (diff)
update run to use mvn to package
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 1462155..e381ebe 100644
--- a/Rakefile
+++ b/Rakefile
@@ -20,7 +20,8 @@ task package: [:test, :doc] do
end
desc "Run the program"
-task run: [:package] do
+task :run do
+ sh "mvn package"
sh "java -cp target/assignment1*.jar ca.mokhan.comp268.App"
end