Re: Hbase integration testing

2018-02-22 Thread Gauthier Feuillen
While in the project of interest : [info] common-library/*:clean = Task[Unit] [info] +-common-library/*:clean::streams = Task[sbt.std.TaskStreams[sbt.internal.util.Init$ScopedKey[_ <: Any]]] [info] | +-*/*:streamsManager = Task[sbt.std.Streams[sbt.internal.util.Init$ScopedKey[_ <: Any]]]

Re: Hbase integration testing

2018-02-21 Thread Ted Yu
It seems you're using sbt. Can you run this command and pastebin the output: sbt "inspect tree clean" On Wed, Feb 21, 2018 at 8:21 AM, Gauthier Feuillen wrote: > Yeah I already tested that (thanks for the help btw) > > Here are my dependencies: > > > lazy val

Re: Hbase integration testing

2018-02-21 Thread Gauthier Feuillen
Nothing, the class is just not available in my project ... > On 21 Feb 2018, at 17:36, Debraj Manna wrote: > > What is the error you are getting? > > On 21-Feb-2018 9:51 PM, "Gauthier Feuillen" wrote: > >> Yeah I already tested that (thanks

Re: Hbase integration testing

2018-02-21 Thread Debraj Manna
What is the error you are getting? On 21-Feb-2018 9:51 PM, "Gauthier Feuillen" wrote: > Yeah I already tested that (thanks for the help btw) > > Here are my dependencies: > > > lazy val hbaseTesting = "org.apache.hbase" % "hbase-testing-util" % > version % Test >

Re: Hbase integration testing

2018-02-21 Thread Gauthier Feuillen
Yeah I already tested that (thanks for the help btw) Here are my dependencies: lazy val hbaseTesting = "org.apache.hbase" % "hbase-testing-util" % version % Test lazy val hbaseServerTest = "org.apache.hbase" % "hbase-server" % version % Test lazy val hbaseTestDependencies =

Re: Hbase integration testing

2018-02-21 Thread Debraj Manna
Use hbase-testing-util https://mvnrepository.com/artifact/org.apache.hbase/hbase-testing-util On 21-Feb-2018 9:40 PM, "Gauthier Feuillen" wrote: > I did that but still the class is not available. Strange. > > > On 21 Feb 2018, at 17:08, Debraj Manna

Re: Hbase integration testing

2018-02-21 Thread Gauthier Feuillen
I did that but still the class is not available. Strange. > On 21 Feb 2018, at 17:08, Debraj Manna wrote: > > You have to use hbase-testing-util dependency. Check the below discussion > in stackoverflow > > https://stackoverflow.com/q/48114833/785523 > > On

Re: Hbase integration testing

2018-02-21 Thread Ted Yu
HBaseTestingUtility is in hbase-server module. You can add hbase-server module with test scope. On Wed, Feb 21, 2018 at 7:07 AM, Gauthier Feuillen wrote: > Hi, > > I’d like to be able to unit test my HBase application. I see a lot of > posts using the

Re: Hbase integration testing

2018-02-21 Thread Debraj Manna
You have to use hbase-testing-util dependency. Check the below discussion in stackoverflow https://stackoverflow.com/q/48114833/785523 On 21-Feb-2018 8:37 PM, "Gauthier Feuillen" wrote: Hi, I’d like to be able to unit test my HBase application. I see a lot of posts

Hbase integration testing

2018-02-21 Thread Gauthier Feuillen
Hi, I’d like to be able to unit test my HBase application. I see a lot of posts using the HBaseTestingUtility. I can’t get it into my project. Which dependency(ies) should I use ? Best, Gauthier.