You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iota.apache.org by to...@apache.org on 2016/07/05 20:30:02 UTC

[5/7] incubator-iota git commit: add main class in build settings

add main class in build settings


Project: http://git-wip-us.apache.org/repos/asf/incubator-iota/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-iota/commit/8c6e74dc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-iota/tree/8c6e74dc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-iota/diff/8c6e74dc

Branch: refs/heads/master
Commit: 8c6e74dc9837f3cbc667e01d981a42a402c17e31
Parents: c1ac0ab
Author: sandy <ph...@gmail.com>
Authored: Wed Jul 6 00:42:58 2016 +0530
Committer: sandy <ph...@gmail.com>
Committed: Wed Jul 6 00:42:58 2016 +0530

----------------------------------------------------------------------
 Performers/project/BuildSettings.scala | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-iota/blob/8c6e74dc/Performers/project/BuildSettings.scala
----------------------------------------------------------------------
diff --git a/Performers/project/BuildSettings.scala b/Performers/project/BuildSettings.scala
index b471364..151e49b 100644
--- a/Performers/project/BuildSettings.scala
+++ b/Performers/project/BuildSettings.scala
@@ -30,7 +30,6 @@ object BuildSettings {
     },
     triggeredMessage := Watched.clearWhenTriggered,
     resolvers := allResolvers,
-    mainClass := Some("org.apache.iota.fey.Application"),
     fork := true,
     connectInput in run := true
   )
@@ -50,7 +49,8 @@ object BuildSettings {
     scalaVersion := ScalaVersion,
     organization := "org.apache.iota.fey.performer",
     description := "Simple Stream Application",
-    scalacOptions := Seq("-deprecation", "-unchecked", "-encoding", "utf8", "-Xlint")
+    scalacOptions := Seq("-deprecation", "-unchecked", "-encoding", "utf8", "-Xlint"),
+    mainClass := Some("org.apache.iota.fey.performer.Application")
   )
 
   lazy val ZMQbuildSettings = Defaults.coreDefaultSettings ++ Seq(
@@ -59,7 +59,8 @@ object BuildSettings {
     scalaVersion := ScalaVersion,
     organization := "org.apache.iota.fey.performer",
     description := "ZMQ Application",
-    scalacOptions := Seq("-deprecation", "-unchecked", "-encoding", "utf8", "-Xlint")
+    scalacOptions := Seq("-deprecation", "-unchecked", "-encoding", "utf8", "-Xlint"),
+    mainClass := Some("org.apache.iota.fey.performer.Application")
   )
 
 }