Re: Why there is no snapshots for 1.5 branch?

2015-09-22 Thread Patrick Wendell
I just added snapshot builds for 1.5. They will take a few hours to build, but once we get them working should publish every few hours. https://amplab.cs.berkeley.edu/jenkins/view/Spark-Packaging - Patrick On Mon, Sep 21, 2015 at 10:36 PM, Bin Wang wrote: > However I find

Re: Why there is no snapshots for 1.5 branch?

2015-09-22 Thread Bin Wang
Thanks. I've solved it. I modified pom.xml and add my own repo into it, then use "mvn deploy". Fengdong Yu 于2015年9月22日周二 下午2:08写道: > basically, you can build snapshot by yourself. > > just clone the source code, and then 'mvn package/deploy/install…..’ > > > Azuryy Yu >

Re: Why there is no snapshots for 1.5 branch?

2015-09-21 Thread Mark Hamstra
Yeah, whoever is maintaining the scripts and snapshot builds has fallen down on the job -- but there is nothing preventing you from checking out branch-1.5 and creating your own build, which is arguably a smarter thing to do anyway. If I'm going to use a non-release build, then I want the full

Re: Why there is no snapshots for 1.5 branch?

2015-09-21 Thread Fengdong Yu
Do you mean you want to publish the artifact to your private repository? if so, please using ‘sbt publish’ add the following in your build.sb: publishTo := { val nexus = "https://YOUR_PRIVATE_REPO_HOSTS/; if (version.value.endsWith("SNAPSHOT")) Some("snapshots" at nexus +

Re: Why there is no snapshots for 1.5 branch?

2015-09-21 Thread Bin Wang
But I cannot find 1.5.1-SNAPSHOT either at https://repository.apache.org/content/groups/snapshots/org/apache/spark/spark-core_2.10/ Mark Hamstra 于2015年9月22日周二 下午12:55写道: > There is no 1.5.0-SNAPSHOT because 1.5.0 has already been released. The > current head of

Why there is no snapshots for 1.5 branch?

2015-09-21 Thread Bin Wang
I'd like to use some important bug fixes in 1.5 branch and I look for the apache maven host, but don't find any snapshot for 1.5 branch. https://repository.apache.org/content/groups/snapshots/org/apache/spark/spark-core_2.10/1.5.0-SNAPSHOT/ I can find 1.4.X and 1.6.0 versions, why there is no

Re: Why there is no snapshots for 1.5 branch?

2015-09-21 Thread Bin Wang
My project is using sbt (or maven), which need to download dependency from a maven repo. I have my own private maven repo with nexus but I don't know how to push my own build to it, can you give me a hint? Mark Hamstra 于2015年9月22日周二 下午1:25写道: > Yeah, whoever is

Re: Why there is no snapshots for 1.5 branch?

2015-09-21 Thread Bin Wang
However I find some scripts in dev/audit-release, can I use them? Bin Wang 于2015年9月22日周二 下午1:34写道: > No, I mean push spark to my private repository. Spark don't have a > build.sbt as far as I see. > > Fengdong Yu 于2015年9月22日周二 下午1:29写道: > >> Do you

Re: Why there is no snapshots for 1.5 branch?

2015-09-21 Thread Mark Hamstra
There is no 1.5.0-SNAPSHOT because 1.5.0 has already been released. The current head of branch-1.5 is 1.5.1-SNAPSHOT -- soon to be 1.5.1 release candidates and then the 1.5.1 release. On Mon, Sep 21, 2015 at 9:51 PM, Bin Wang wrote: > I'd like to use some important bug fixes

Re: Why there is no snapshots for 1.5 branch?

2015-09-21 Thread Bin Wang
No, I mean push spark to my private repository. Spark don't have a build.sbt as far as I see. Fengdong Yu 于2015年9月22日周二 下午1:29写道: > Do you mean you want to publish the artifact to your private repository? > > if so, please using ‘sbt publish’ > > add the following in