Ant @ Jenkins

2014-04-10 Thread jhm
I have a look at the configuration of the Matrix Job at Apaches Jenkins instance https://builds.apache.org/job/Ant-Build-Matrix/configure We have a special job [1] for openJDK8. I think this was introduced in the time when Java8 was not released. No we have several Java8 installations ava

Re: Standard repository layout?

2014-04-10 Thread Ben McCann
Thanks Josh. Great to hear that SBT and Ivy largely use the same thing there. Unfortunately Gradle uses something completely different. I've submitted a pull request to Gradleto allow setting an option that would make it work the same way as Ivy and SBT. U

Re: Standard repository layout?

2014-04-10 Thread Josh Suereth
Right, Ivy has a default for local in its ivysettings, but I think sbt/gradle just mimic this as opposed to use the raw ivy settings (I'm not fully aware of why sbt doesn't use it directly, I think so users can turn it off using sbt-only settings) Here's the Ivy 1.4 config for local:

Re: Standard repository layout?

2014-04-10 Thread Ben McCann
Hey Josh, thanks for the pointers. I'm mainly curious about ~/.ivy2/local. I'm surprised you say you don't think there *is* a standard. Ivy must use some pattern by default when publishing to ~/.ivy2/local, right? Hopefully for compatibility SBT would do the same thing as Ivy there. Thanks, Ben

Re: Standard repository layout?

2014-04-10 Thread Josh Suereth
Sorry, send that a bit too early, here's the hook to local where we adapt the pattern for sbt plugins: https://github.com/sbt/sbt/blob/0.13/ivy/src/main/scala/sbt/Resolver.scala#L281-L285 If you're not resolving sbt plugins, that shouldn't matter. On Thu, Apr 10, 2014 at 8:47 AM, Josh Suereth

Re: Standard repository layout?

2014-04-10 Thread Josh Suereth
Ben - Do you mean "~/.ivy2/local" or "~/.ivy2/cache" ? AFAIK the cache bit is the same in sbt as for Ivy, caveat that we try to ignore what resolver an artifact came from in the store. However, Gradle's cache is a completely different beast, so the I don't think the two are compatible. Now fo

AW: JDK 9 build 06 is available on java.net

2014-04-10 Thread jhm
BTW http://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html Jan > -Ursprüngliche Nachricht- > Von: Jan Matèrne (jhm) [mailto:apa...@materne.de] > Gesendet: Donnerstag, 10. April 2014 11:44 > An: 'Ant Developers List' > Betreff: AW: JDK 9 build 06 is available on java.net >

AW: JDK 9 build 06 is available on java.net

2014-04-10 Thread jhm
> > I am trying to add the Java9 support. > > First try is building on Java9, which fails due stricter javadoc > checks. > > > Yup, I think Stefan had reported too that generating the Javadoc of Ant > also fails under Java 1.8 I changed the buildfile to be disable the doclint by default. doclint

Standard repository layout?

2014-04-10 Thread Ben McCann
Hi, I'm using SBT and Gradle as build systems. I want them to publish to and read from ~/.ivy2 but they use and expect default layouts and so they do not cooperate well each other using this directory. I'm wondering which one is right and which one is wrong. Also, I downloaded the latest ivy sour