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:03 UTC

[6/7] incubator-iota git commit: add organization in every project and remove fey settings

add organization in every project and remove fey 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/c3f55e7b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-iota/tree/c3f55e7b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-iota/diff/c3f55e7b

Branch: refs/heads/master
Commit: c3f55e7bda2a0b503aa01fcf1e55f992fb20643b
Parents: 8c6e74d
Author: sandy <ph...@gmail.com>
Authored: Wed Jul 6 00:53:34 2016 +0530
Committer: sandy <ph...@gmail.com>
Committed: Wed Jul 6 00:53:34 2016 +0530

----------------------------------------------------------------------
 Performers/project/BuildSettings.scala | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-iota/blob/c3f55e7b/Performers/project/BuildSettings.scala
----------------------------------------------------------------------
diff --git a/Performers/project/BuildSettings.scala b/Performers/project/BuildSettings.scala
index 151e49b..c9560bd 100644
--- a/Performers/project/BuildSettings.scala
+++ b/Performers/project/BuildSettings.scala
@@ -6,7 +6,6 @@ object BuildSettings {
   import Dependencies.Resolvers._
 
   val ParentProject = "jars_parent"
-  val Fey = "fey"
   val Stream = "fey_stream"
   val ZMQ = "fey_zmq"
 
@@ -24,6 +23,7 @@ object BuildSettings {
   )
 
   lazy val BasicSettings = Seq(
+    organization := "org.apache.iota",
     maxErrors := 5,
     ivyScala := ivyScala.value map {
       _.copy(overrideScalaVersion = true)
@@ -34,20 +34,10 @@ object BuildSettings {
     connectInput in run := true
   )
 
-  lazy val FeybuildSettings = Defaults.coreDefaultSettings ++ Seq(
-    name := Fey,
-    version := Version,
-    scalaVersion := ScalaVersion,
-    organization := "com.litbit",
-    description := "Fey Development Instance",
-    scalacOptions := Seq("-deprecation", "-unchecked", "-encoding", "utf8", "-Xlint")
-  )
-
   lazy val StreambuildSettings = Defaults.coreDefaultSettings ++ Seq(
     name := Stream,
     version := Version,
     scalaVersion := ScalaVersion,
-    organization := "org.apache.iota.fey.performer",
     description := "Simple Stream Application",
     scalacOptions := Seq("-deprecation", "-unchecked", "-encoding", "utf8", "-Xlint"),
     mainClass := Some("org.apache.iota.fey.performer.Application")
@@ -57,7 +47,6 @@ object BuildSettings {
     name := ZMQ,
     version := Version,
     scalaVersion := ScalaVersion,
-    organization := "org.apache.iota.fey.performer",
     description := "ZMQ Application",
     scalacOptions := Seq("-deprecation", "-unchecked", "-encoding", "utf8", "-Xlint"),
     mainClass := Some("org.apache.iota.fey.performer.Application")