Github user darionyaphet commented on a diff in the pull request:
https://github.com/apache/incubator-gearpump/pull/11#discussion_r63819150
--- Diff: project/BuildExample.scala ---
@@ -229,4 +229,20 @@ object BuildExample extends sbt.Build {
CrossVersion.binaryScalaVersion(scalaVersion.value)
)
) dependsOn (streaming % "test->test; provided")
+
+ lazy val examples_redis = Project(
+ id = "gearpump-examples-redis",
+ base = file("examples/streaming/redis"),
+ settings = commonSettings ++ noPublish ++ myAssemblySettings ++
+ Seq(
+ mainClass in (Compile, packageBin) :=
Some("org.apache.gearpump.streaming.example.redis.RedisSourceSinkExample"),
+ target in assembly :=
baseDirectory.value.getParentFile.getParentFile / "target" /
+ CrossVersion.binaryScalaVersion(scalaVersion.value)
+ ) ++
+ Seq(
+ mainClass in (Compile, packageBin) :=
Some("org.apache.gearpump.streaming.example.redis.RedisSourceStorageExample"),
--- End diff --
HI @huafengw when I package using SBT , the main class will specifies into
META-INF ?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---