Re: Unable to resolve artifact: Unable to get dependency information

2014-08-06 Thread Sofiane Bendoukha
Sorry for the delay, I wanted to execute mvn dependency:tree but I figured out that I am working only with ant and I don't have a POM file. On 24.07.2014 17:30, Jeremy Daggett wrote: Hmm, I wonder if there is some transitive dependency in your project that requires 0.10.1-SNAPSHOT. Can you

Re: How to write a Blob using an OutputStream?

2014-08-06 Thread Adrian Cole
Looks fine, I might switch to composition, but that's just a style nit. Ex. PutOnCloseOutputStream extends FilterOutputString { private final okio.Buffer buffer = new okio.Buffer(); ... PutOnCloseOutputStream(…){ super(buffer.outputStream()); … } @Override public void close()