Update Depend Versions:

Guava 17.0 -> 18.0
Lombok 1.12.6 -> 1.14.8
Gson 2.2.4 -> 2.3
SnakeYaml 1.13 -> 1.14
This commit is contained in:
md_5
2014-09-25 11:04:35 +10:00
parent 6fcfb5aecb
commit 57a07dc2e2
9 changed files with 8 additions and 307 deletions

View File

@@ -24,7 +24,7 @@ public class JenkinsModuleSource implements ModuleSource
con.setConnectTimeout( 15000 );
con.setReadTimeout( 15000 );
Files.copy( ByteStreams.newInputStreamSupplier( ByteStreams.toByteArray( con.getInputStream() ) ), module.getFile() );
Files.write( ByteStreams.toByteArray( con.getInputStream() ), module.getFile() );
System.out.println( "Download complete" );
} catch ( IOException ex )
{