You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@slider.apache.org by "hsy541@gmail.com" <hs...@gmail.com> on 2014/11/06 03:36:12 UTC

Maven repository?

Is there a public maven repository that I can checkout the slider library?

Best,
Siyuan

Re: Maven repository?

Posted by Gour Saha <gs...@hortonworks.com>.
Until then, you should be able to get away by checking out the git repo and
run mvn install -DskipTests (to get it into your .m2) and then use this
(for develop) -

      <dependency>
        <groupId>org.apache.slider</groupId>
        <artifactId>slider-core</artifactId>
        <version>0.61-incubating</version>
      </dependency>

-Gour

On Thu, Nov 6, 2014 at 6:51 AM, Billie Rinaldi <bi...@gmail.com>
wrote:

> Here's some info on publishing maven artifacts:
> http://www.apache.org/dev/publishing-maven-artifacts.html
> Although I think hadoop doesn't inherit from the ASF pom and just copies
> the stuff it needs into its own pom.  We may already have some of the
> things we need in the distribution management section.
> The artifacts will have be staged and voted upon, like our other release
> artifacts.
>
> On Thu, Nov 6, 2014 at 2:06 AM, Steve Loughran <st...@hortonworks.com>
> wrote:
>
> > we haven't published to maven yet; I'll see about what it will take to do
> > that with the 0.60 release against the forthcoming hadoop-2.6-RC0. You
> > don't want publishing things to maven that depend on -SNAPSHOT stuff as
> it
> > is too brittle (every morning you end up getting a different version of
> the
> > binaries. If they are incompatible you get this rolling wave of
> application
> > failure travelling round the world as midnight crosses the timezones.
> I've
> > been in the situation where a groovy snapshot broke; I found it an hour
> > after germany and france; we were left filing bugs and workarounds until
> > the US woke up and fixed it...
> >
> > -steve
> >
> > On 6 November 2014 03:36, hsy541@gmail.com <hs...@gmail.com> wrote:
> >
> > > This is git repository? What I mean is if I want to write some code
> > depends
> > > on slider library. How would I include the dependency in pom.xml?
> > >
> > > Thanks!
> > >
> > >
> > > On Wed, Nov 5, 2014 at 7:23 PM, Ted Yu <yu...@gmail.com> wrote:
> > >
> > > > Slider maven repo is here:
> > > >
> > > > https://git-wip-us.apache.org/repos/asf/incubator-slider.git
> > > >
> > > >
> > > > You can checkout develop branch.
> > > >
> > > >
> > > > Cheers
> > > >
> > > >
> > > > On Wed, Nov 5, 2014 at 6:36 PM, hsy541@gmail.com <hs...@gmail.com>
> > > wrote:
> > > >
> > > > > Is there a public maven repository that I can checkout the slider
> > > > library?
> > > > >
> > > > > Best,
> > > > > Siyuan
> > > > >
> > > >
> > >
> >
> > --
> > CONFIDENTIALITY NOTICE
> > NOTICE: This message is intended for the use of the individual or entity
> to
> > which it is addressed and may contain information that is confidential,
> > privileged and exempt from disclosure under applicable law. If the reader
> > of this message is not the intended recipient, you are hereby notified
> that
> > any printing, copying, dissemination, distribution, disclosure or
> > forwarding of this communication is strictly prohibited. If you have
> > received this communication in error, please contact the sender
> immediately
> > and delete it from your system. Thank You.
> >
>

-- 
CONFIDENTIALITY NOTICE
NOTICE: This message is intended for the use of the individual or entity to 
which it is addressed and may contain information that is confidential, 
privileged and exempt from disclosure under applicable law. If the reader 
of this message is not the intended recipient, you are hereby notified that 
any printing, copying, dissemination, distribution, disclosure or 
forwarding of this communication is strictly prohibited. If you have 
received this communication in error, please contact the sender immediately 
and delete it from your system. Thank You.

Re: Maven repository?

Posted by Billie Rinaldi <bi...@gmail.com>.
Here's some info on publishing maven artifacts:
http://www.apache.org/dev/publishing-maven-artifacts.html
Although I think hadoop doesn't inherit from the ASF pom and just copies
the stuff it needs into its own pom.  We may already have some of the
things we need in the distribution management section.
The artifacts will have be staged and voted upon, like our other release
artifacts.

On Thu, Nov 6, 2014 at 2:06 AM, Steve Loughran <st...@hortonworks.com>
wrote:

> we haven't published to maven yet; I'll see about what it will take to do
> that with the 0.60 release against the forthcoming hadoop-2.6-RC0. You
> don't want publishing things to maven that depend on -SNAPSHOT stuff as it
> is too brittle (every morning you end up getting a different version of the
> binaries. If they are incompatible you get this rolling wave of application
> failure travelling round the world as midnight crosses the timezones. I've
> been in the situation where a groovy snapshot broke; I found it an hour
> after germany and france; we were left filing bugs and workarounds until
> the US woke up and fixed it...
>
> -steve
>
> On 6 November 2014 03:36, hsy541@gmail.com <hs...@gmail.com> wrote:
>
> > This is git repository? What I mean is if I want to write some code
> depends
> > on slider library. How would I include the dependency in pom.xml?
> >
> > Thanks!
> >
> >
> > On Wed, Nov 5, 2014 at 7:23 PM, Ted Yu <yu...@gmail.com> wrote:
> >
> > > Slider maven repo is here:
> > >
> > > https://git-wip-us.apache.org/repos/asf/incubator-slider.git
> > >
> > >
> > > You can checkout develop branch.
> > >
> > >
> > > Cheers
> > >
> > >
> > > On Wed, Nov 5, 2014 at 6:36 PM, hsy541@gmail.com <hs...@gmail.com>
> > wrote:
> > >
> > > > Is there a public maven repository that I can checkout the slider
> > > library?
> > > >
> > > > Best,
> > > > Siyuan
> > > >
> > >
> >
>
> --
> CONFIDENTIALITY NOTICE
> NOTICE: This message is intended for the use of the individual or entity to
> which it is addressed and may contain information that is confidential,
> privileged and exempt from disclosure under applicable law. If the reader
> of this message is not the intended recipient, you are hereby notified that
> any printing, copying, dissemination, distribution, disclosure or
> forwarding of this communication is strictly prohibited. If you have
> received this communication in error, please contact the sender immediately
> and delete it from your system. Thank You.
>

Re: Maven repository?

Posted by Steve Loughran <st...@hortonworks.com>.
we haven't published to maven yet; I'll see about what it will take to do
that with the 0.60 release against the forthcoming hadoop-2.6-RC0. You
don't want publishing things to maven that depend on -SNAPSHOT stuff as it
is too brittle (every morning you end up getting a different version of the
binaries. If they are incompatible you get this rolling wave of application
failure travelling round the world as midnight crosses the timezones. I've
been in the situation where a groovy snapshot broke; I found it an hour
after germany and france; we were left filing bugs and workarounds until
the US woke up and fixed it...

-steve

On 6 November 2014 03:36, hsy541@gmail.com <hs...@gmail.com> wrote:

> This is git repository? What I mean is if I want to write some code depends
> on slider library. How would I include the dependency in pom.xml?
>
> Thanks!
>
>
> On Wed, Nov 5, 2014 at 7:23 PM, Ted Yu <yu...@gmail.com> wrote:
>
> > Slider maven repo is here:
> >
> > https://git-wip-us.apache.org/repos/asf/incubator-slider.git
> >
> >
> > You can checkout develop branch.
> >
> >
> > Cheers
> >
> >
> > On Wed, Nov 5, 2014 at 6:36 PM, hsy541@gmail.com <hs...@gmail.com>
> wrote:
> >
> > > Is there a public maven repository that I can checkout the slider
> > library?
> > >
> > > Best,
> > > Siyuan
> > >
> >
>

-- 
CONFIDENTIALITY NOTICE
NOTICE: This message is intended for the use of the individual or entity to 
which it is addressed and may contain information that is confidential, 
privileged and exempt from disclosure under applicable law. If the reader 
of this message is not the intended recipient, you are hereby notified that 
any printing, copying, dissemination, distribution, disclosure or 
forwarding of this communication is strictly prohibited. If you have 
received this communication in error, please contact the sender immediately 
and delete it from your system. Thank You.

Re: Maven repository?

Posted by "hsy541@gmail.com" <hs...@gmail.com>.
This is git repository? What I mean is if I want to write some code depends
on slider library. How would I include the dependency in pom.xml?

Thanks!


On Wed, Nov 5, 2014 at 7:23 PM, Ted Yu <yu...@gmail.com> wrote:

> Slider maven repo is here:
>
> https://git-wip-us.apache.org/repos/asf/incubator-slider.git
>
>
> You can checkout develop branch.
>
>
> Cheers
>
>
> On Wed, Nov 5, 2014 at 6:36 PM, hsy541@gmail.com <hs...@gmail.com> wrote:
>
> > Is there a public maven repository that I can checkout the slider
> library?
> >
> > Best,
> > Siyuan
> >
>

Re: Maven repository?

Posted by Ted Yu <yu...@gmail.com>.
Slider maven repo is here:

https://git-wip-us.apache.org/repos/asf/incubator-slider.git


You can checkout develop branch.


Cheers


On Wed, Nov 5, 2014 at 6:36 PM, hsy541@gmail.com <hs...@gmail.com> wrote:

> Is there a public maven repository that I can checkout the slider library?
>
> Best,
> Siyuan
>