Showing posts with label Java (programming language). Show all posts
Showing posts with label Java (programming language). Show all posts

Saturday, October 29, 2016

macOS Sierra: Scala: Installing sbt (Build automation tool for Scala)

Command:

$ brew install sbt


Result:

==> Auto-updated Homebrew!
Updated 1 tap (homebrew/core).
==> New Formulae
pacparser

==> Using the sandbox
==> Downloading https://dl.bintray.com/sbt/native-packages/sbt/0.13.12/sbt-0.13.12.tgz
######################################################################## 100.0%
==> Caveats
You can use $SBT_OPTS to pass additional JVM options to SBT:
   SBT_OPTS="-XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=256M"

This formula is now using the standard typesafe sbt launcher script.
Project specific options should be placed in .sbtopts in the root of your project.
Global settings should be placed in /usr/local/etc/sbtopts
==> Summary
🍺  /usr/local/Cellar/sbt/0.13.12: 6 files, 1.2M, built in 13 seconds

Sunday, September 25, 2016

IntelliJ IDEA: Download

IntelliJ IDEA

https://www.jetbrains.com/idea/

macOS Sierra: Installing DEEPLEARNING4J (Deep Learning for Java)

Deeplearning4j

Command (Check to see java version is greater than 1.7 and 64-bit):

$ java -version


Result:

java version "1.8.0_91"
Java(TM) SE Runtime Environment (build 1.8.0_91-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.91-b14, mixed mode)


Command (Check to see if mvn is installed):

$ mvn --version


Result:

-bash: mvn: command not found


Command (Installing mvn):

$ brew install maven


Result:

==> Auto-updated Homebrew!
Updated Homebrew from 2818156 to 03e568e.
Updated 1 tap (homebrew/core).
==> New Formulae
eventql                                  mpage                                
==> Updated Formulae
akka                       grails                     pkg-config ✔          
amazon-ecs-cli             graphviz                   platformio            
ammonite-repl              gron                       ponyc                  
ansifilter                 guile                      predictionio          
antigen                    gupnp                      privoxy                
apr-util                   gupnp-av                   proguard              
argus-clients              gupnp-tools                prometheus            
aria2                      haskell-stack              proof-general          
artifactory                highlighting-kate          protobuf              
augeas                     hopenpgp-tools             protobuf-c            
autoconf-archive           httping                    protobuf-swift        
aws-sdk-cpp                hyper                      pyenv                  
awscli                     idris                      quantlib              
bacula-fd                  imagemagick                redpen                
bash                       ios-deploy                 repo                  
cake                       ipfs                       reposurgeon            
carina                     irssi                      rswift                
ceylon                     jenkins                    sdcc                  
cfr-decompiler             json-fortran               sdcv                  
cli53                      khard                      shpotify              
cmocka                     kitchen-sync               signify-osx            
convox                     kobalt                     slimerjs              
corectl                    kpcli                      sonar-runner          
cromwell                   kubernetes-cli             sops                  
crystal-lang               languagetool               sourcekitten          
darcs                      leiningen                  stunnel                
dash                       libass                     supersonic            
ddar                       libphonenumber             svtplay-dl            
diff-so-fancy              libstrophe                 syncthing              
digdag                     liquibase                  szl                    
dmd                        logentries                 tailor                
dropbox-uploader           macosvpn                   takt                  
elixir                     mas                        tarantool              
elvish                     mesos                      tbb                    
emacs                      mg3a                       terraform              
erlang                     minio                      upscaledb              
etcd                       mobile-shell               valgrind              
fio                        mono                       varnish                
ford                       nanopb-generator           vim ✔                  
fwup                       neo4j                      voldemort              
fzf                        node                       wildfly-as            
galen                      node-build                 wxmac                  
git-annex                  ntl                        x264                  
git-credential-manager     nvm                        xorriso                
git-flow-avh               offlineimap                yara                  
git-town                   ola                        yash                  
gitlab-ci-multi-runner     open-babel                 youtube-dl            
gjstest                    openssl ✔                  zbackup                
global                     openssl@1.1                zpaq                  
gnu-smalltalk              osm-pbf                    zplug                  
gpgme                      packer                
gradle                     parallel              
==> Deleted Formulae
lftp                pyqwt               rsense              yap            
pgtap               rbenv-readline      sqsh            

==> Using the sandbox
==> Downloading https://www.apache.org/dyn/closer.cgi?path=maven/maven-3/3.3.9/b
==> Best Mirror http://www-us.apache.org/dist/maven/maven-3/3.3.9/binaries/apach
######################################################################## 100.0%
🍺  /usr/local/Cellar/maven/3.3.9: 94 files, 9.6M, built in 21 seconds


Command (Updating git):

$ git clone git://git.kernel.org/pub/scm/git/git.git


Result:

Cloning into 'git'...
remote: Counting objects: 209696, done.
remote: Compressing objects: 100% (52793/52793), done.
remote: Total 209696 (delta 155751), reused 208185 (delta 154812)
Receiving objects: 100% (209696/209696), 46.06 MiB | 496.00 KiB/s, done.
Resolving deltas: 100% (155751/155751), done.


Command (Make):

$ make NO_GETTEXT=1 CFLAGS="-I/usr/local/opt/openssl/include" LDFLAGS="-L/usr/local/opt/openssl/lib"


Command (Make install):

make install NO_GETTEXT=1 CFLAGS="-I/usr/local/opt/openssl/include" LDFLAGS="-L/usr/local/opt/openssl/lib"


Command (Downloading examples):

$ git clone https://github.com/deeplearning4j/dl4j-examples.git


Result:

Cloning into 'dl4j-examples'...
remote: Counting objects: 4516, done.
remote: Compressing objects: 100% (164/164), done.
remote: Total 4516 (delta 69), reused 0 (delta 0), pack-reused 4291
Receiving objects: 100% (4516/4516), 93.87 MiB | 809.00 KiB/s, done.
Resolving deltas: 100% (1556/1556), done.


Command:

$ cd dl4j-examples/
$ mvn clean install


Result:

[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] DeepLearning4j Examples Parent
[INFO] DeepLearning4j Examples
[INFO] dl4j-spark-examples
[INFO] dl4j-spark-local
[INFO] dl4j-spark-cdh
[INFO] dl4j-spark-hdp
[INFO] datavec-examples
[INFO] DeepLearning4j CUDA special examples
[INFO] nd4j-examples
[INFO]                                                                      
[INFO] ------------------------------------------------------------------------
[INFO] Building DeepLearning4j Examples Parent 0.5-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom (4 KB at 1.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom (13 KB at 40.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom (26 KB at 69.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom (15 KB at 56.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar (25 KB at 84.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom (7 KB at 23.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom (9 KB at 36.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom (30 KB at 106.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom (15 KB at 47.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar (27 KB at 97.8 KB/sec)
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ deeplearning4j-examples-parent ---
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (2 KB at 5.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9 KB at 35.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 KB at 50.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom (4 KB at 13.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom (4 KB at 15.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (9 KB at 32.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (9 KB at 32.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar (13 KB at 25.3 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar (221 KB at 285.6 KB/sec)
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ deeplearning4j-examples-parent ---
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (3 KB at 10.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2 KB at 8.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3 KB at 12.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (2 KB at 7.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9 KB at 36.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (4 KB at 16.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 2.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (6 KB at 23.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom
Downloaded: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 4.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (7 KB at 27.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom
Downloaded: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (4 KB at 12.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2 KB at 8.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (3 KB at 10.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (2 KB at 7.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (2 KB at 6.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (2 KB at 7.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom (3 KB at 10.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom (19 KB at 73.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (7 KB at 27.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 KB at 53.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom (2 KB at 4.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom (5 KB at 20.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom (8 KB at 25.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom (8 KB at 28.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar (114 KB at 172.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar (35 KB at 38.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar (29 KB at 31.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar
Downloaded: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar (119 KB at 95.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar (85 KB at 57.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar (48 KB at 31.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar (56 KB at 35.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar
Downloaded: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar (37 KB at 22.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar (24 KB at 13.4 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar (12 KB at 5.7 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar (86 KB at 39.7 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (190 KB at 69.3 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar (226 KB at 78.7 KB/sec)
[INFO] Installing /Users/USERNAME/dl4j-examples/pom.xml to /Users/USERNAME/.m2/repository/org/deeplearning4j/deeplearning4j-examples-parent/0.5-SNAPSHOT/deeplearning4j-examples-parent-0.5-SNAPSHOT.pom
[INFO]                                                                      
[INFO] ------------------------------------------------------------------------
[INFO] Building DeepLearning4j Examples 0.5-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/mojo/exec-maven-plugin/1.4.0/exec-maven-plugin-1.4.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/mojo/exec-maven-plugin/1.4.0/exec-maven-plugin-1.4.0.pom (12 KB at 44.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom (24 KB at 80.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom (5 KB at 17.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/mojo/exec-maven-plugin/1.4.0/exec-maven-plugin-1.4.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/mojo/exec-maven-plugin/1.4.0/exec-maven-plugin-1.4.0.jar (46 KB at 124.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom (8 KB at 29.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar (29 KB at 98.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.5.1/maven-compiler-plugin-3.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.5.1/maven-compiler-plugin-3.5.1.pom (10 KB at 39.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/28/maven-plugins-28.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/28/maven-plugins-28.pom (12 KB at 40.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom (40 KB at 139.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom (16 KB at 48.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.5.1/maven-compiler-plugin-3.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.5.1/maven-compiler-plugin-3.5.1.jar (50 KB at 156.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom (11 KB at 40.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom (14 KB at 52.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar (30 KB at 96.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom (6 KB at 23.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar (34 KB at 118.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/2.4.3/maven-shade-plugin-2.4.3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/2.4.3/maven-shade-plugin-2.4.3.pom (9 KB at 28.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/2.4.3/maven-shade-plugin-2.4.3.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/2.4.3/maven-shade-plugin-2.4.3.jar (102 KB at 220.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native-platform/0.6.0/nd4j-native-platform-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native-platform/0.6.0/nd4j-native-platform-0.6.0.pom (2 KB at 7.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-backend-impls/0.6.0/nd4j-backend-impls-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-backend-impls/0.6.0/nd4j-backend-impls-0.6.0.pom (8 KB at 31.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-backends/0.6.0/nd4j-backends-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-backends/0.6.0/nd4j-backends-0.6.0.pom (649 B at 2.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j/0.6.0/nd4j-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j/0.6.0/nd4j-0.6.0.pom (17 KB at 63.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (5 KB at 19.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native/0.6.0/nd4j-native-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native/0.6.0/nd4j-native-0.6.0.pom (8 KB at 30.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native-api/0.6.0/nd4j-native-api-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native-api/0.6.0/nd4j-native-api-0.6.0.pom (2 KB at 4.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-api-parent/0.6.0/nd4j-api-parent-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-api-parent/0.6.0/nd4j-api-parent-0.6.0.pom (615 B at 2.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-buffer/0.6.0/nd4j-buffer-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-buffer/0.6.0/nd4j-buffer-0.6.0.pom (4 KB at 14.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-common/0.6.0/nd4j-common-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-common/0.6.0/nd4j-common-0.6.0.pom (3 KB at 10.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.10/slf4j-api-1.7.10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.10/slf4j-api-1.7.10.pom (3 KB at 10.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.10/slf4j-parent-1.7.10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.10/slf4j-parent-1.7.10.pom (13 KB at 49.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.9.10/reflections-0.9.10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.9.10/reflections-0.9.10.pom (9 KB at 35.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava/15.0/guava-15.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava/15.0/guava-15.0.pom (7 KB at 22.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/15.0/guava-parent-15.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/15.0/guava-parent-15.0.pom (8 KB at 28.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.19.0-GA/javassist-3.19.0-GA.pom
Downloaded: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.19.0-GA/javassist-3.19.0-GA.pom (10 KB at 37.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/code/findbugs/annotations/2.0.1/annotations-2.0.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/code/findbugs/annotations/2.0.1/annotations-2.0.1.pom (764 B at 3.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.pom (6 KB at 22.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom (8 KB at 30.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom (10 KB at 34.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom (48 KB at 159.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom (15 KB at 48.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.4.1/commons-math3-3.4.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.4.1/commons-math3-3.4.1.pom (27 KB at 98.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom (55 KB at 161.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom (14 KB at 53.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.3.1/commons-lang3-3.3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.3.1/commons-lang3-3.3.1.pom (20 KB at 67.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/33/commons-parent-33.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/33/commons-parent-33.pom (52 KB at 172.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-context/0.6.0/nd4j-context-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-context/0.6.0/nd4j-context-0.6.0.pom (717 B at 2.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp/1.2.4/javacpp-1.2.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp/1.2.4/javacpp-1.2.4.pom (10 KB at 36.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-api/0.6.0/nd4j-api-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-api/0.6.0/nd4j-api-0.6.0.pom (5 KB at 17.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.5.1/jackson-core-2.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.5.1/jackson-core-2.5.1.pom (5 KB at 19.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.5/jackson-parent-2.5.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.5/jackson-parent-2.5.pom (8 KB at 30.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/18/oss-parent-18.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/18/oss-parent-18.pom (19 KB at 66.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.5.1/jackson-databind-2.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.5.1/jackson-databind-2.5.1.pom (6 KB at 23.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.5.0/jackson-annotations-2.5.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.5.0/jackson-annotations-2.5.0.pom (2 KB at 4.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/projectlombok/lombok/1.16.4/lombok-1.16.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/projectlombok/lombok/1.16.4/lombok-1.16.4.pom (2 KB at 6.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-core/0.6.0/deeplearning4j-core-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-core/0.6.0/deeplearning4j-core-0.6.0.pom (7 KB at 25.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-parent/0.6.0/deeplearning4j-parent-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-parent/0.6.0/deeplearning4j-parent-0.6.0.pom (18 KB at 66.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.12/slf4j-api-1.7.12.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.12/slf4j-api-1.7.12.pom (3 KB at 10.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.12/slf4j-parent-1.7.12.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.12/slf4j-parent-1.7.12.pom (12 KB at 45.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-nn/0.6.0/deeplearning4j-nn-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-nn/0.6.0/deeplearning4j-nn-0.6.0.pom (2 KB at 5.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.5.1/jackson-dataformat-yaml-2.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.5.1/jackson-dataformat-yaml-2.5.1.pom (8 KB at 28.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.12/snakeyaml-1.12.pom
Downloaded: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.12/snakeyaml-1.12.pom (22 KB at 82.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.8/commons-compress-1.8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.8/commons-compress-1.8.pom (12 KB at 38.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.5/xz-1.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.5/xz-1.5.pom (2 KB at 7.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava/11.0/guava-11.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava/11.0/guava-11.0.pom (6 KB at 21.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/11.0/guava-parent-11.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/11.0/guava-parent-11.0.pom (2 KB at 7.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom (965 B at 3.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/json/json/20131018/json-20131018.pom
Downloaded: https://repo.maven.apache.org/maven2/org/json/json/20131018/json-20131018.pom (5 KB at 16.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.5.1/jackson-annotations-2.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.5.1/jackson-annotations-2.5.1.pom (2 KB at 4.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/datavec/datavec-nd4j-common/0.6.0/datavec-nd4j-common-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/datavec/datavec-nd4j-common/0.6.0/datavec-nd4j-common-0.6.0.pom (2 KB at 6.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/datavec/datavec-data/0.6.0/datavec-data-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/datavec/datavec-data/0.6.0/datavec-data-0.6.0.pom (2 KB at 7.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/datavec/datavec-parent/0.6.0/datavec-parent-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/datavec/datavec-parent/0.6.0/datavec-parent-0.6.0.pom (13 KB at 43.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/datavec/datavec-api/0.6.0/datavec-api-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/datavec/datavec-api/0.6.0/datavec-api-0.6.0.pom (5 KB at 17.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.8.1/commons-compress-1.8.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.8.1/commons-compress-1.8.1.pom (12 KB at 44.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.3/commons-math3-3.3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.3/commons-math3-3.3.pom (24 KB at 89.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.7/slf4j-api-1.7.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.7/slf4j-api-1.7.7.pom (3 KB at 10.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.7/slf4j-parent-1.7.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.7/slf4j-parent-1.7.7.pom (12 KB at 40.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.4.4/jackson-core-2.4.4.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.4.4/jackson-core-2.4.4.pom (5 KB at 19.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.4/jackson-parent-2.4.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.4/jackson-parent-2.4.pom (7 KB at 25.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/16/oss-parent-16.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/16/oss-parent-16.pom (19 KB at 70.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.4.4/jackson-databind-2.4.4.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.4.4/jackson-databind-2.4.4.pom (6 KB at 22.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.4.0/jackson-annotations-2.4.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.4.0/jackson-annotations-2.4.0.pom (2 KB at 5.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.4.4/jackson-dataformat-yaml-2.4.4.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.4.4/jackson-dataformat-yaml-2.4.4.pom (8 KB at 29.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.4.4/jackson-datatype-joda-2.4.4.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.4.4/jackson-datatype-joda-2.4.4.pom (4 KB at 13.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.2/joda-time-2.2.pom
Downloaded: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.2/joda-time-2.2.pom (16 KB at 63.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9.2/joda-time-2.9.2.pom
Downloaded: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9.2/joda-time-2.9.2.pom (30 KB at 110.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/projectlombok/lombok/1.16.6/lombok-1.16.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/projectlombok/lombok/1.16.6/lombok-1.16.6.pom (2 KB at 6.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/freemarker/freemarker/2.3.23/freemarker-2.3.23.pom
Downloaded: https://repo.maven.apache.org/maven2/org/freemarker/freemarker/2.3.23/freemarker-2.3.23.pom (2 KB at 6.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (7 KB at 26.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/datavec/datavec-data-image/0.6.0/datavec-data-image-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/datavec/datavec-data-image/0.6.0/datavec-data-image-0.6.0.pom (8 KB at 30.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/github/jai-imageio/jai-imageio-core/1.3.0/jai-imageio-core-1.3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/github/jai-imageio/jai-imageio-core/1.3.0/jai-imageio-core-1.3.0.pom (10 KB at 39.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-jpeg/3.1.1/imageio-jpeg-3.1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-jpeg/3.1.1/imageio-jpeg-3.1.1.pom (2 KB at 4.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio/3.1.1/imageio-3.1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio/3.1.1/imageio-3.1.1.pom (5 KB at 20.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/twelvemonkeys/3.1.1/twelvemonkeys-3.1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/twelvemonkeys/3.1.1/twelvemonkeys-3.1.1.pom (9 KB at 34.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-core/3.1.1/imageio-core-3.1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-core/3.1.1/imageio-core-3.1.1.pom (1004 B at 4.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/common/common-lang/3.1.1/common-lang-3.1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/common/common-lang/3.1.1/common-lang-3.1.1.pom (647 B at 2.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/common/common/3.1.1/common-3.1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/common/common/3.1.1/common-3.1.1.pom (2 KB at 7.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/common/common-io/3.1.1/common-io-3.1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/common/common-io/3.1.1/common-io-3.1.1.pom (2 KB at 3.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/common/common-image/3.1.1/common-image-3.1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/common/common-image/3.1.1/common-image-3.1.1.pom (2 KB at 4.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-metadata/3.1.1/imageio-metadata-3.1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-metadata/3.1.1/imageio-metadata-3.1.1.pom (983 B at 3.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-tiff/3.1.1/imageio-tiff-3.1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-tiff/3.1.1/imageio-tiff-3.1.1.pom (2 KB at 4.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-psd/3.1.1/imageio-psd-3.1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-psd/3.1.1/imageio-psd-3.1.1.pom (2 KB at 4.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-bmp/3.1.1/imageio-bmp-3.1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-bmp/3.1.1/imageio-bmp-3.1.1.pom (1012 B at 4.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacv/1.2/javacv-1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacv/1.2/javacv-1.2.pom (14 KB at 51.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/opencv/3.1.0-1.2/opencv-3.1.0-1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/opencv/3.1.0-1.2/opencv-3.1.0-1.2.pom (3 KB at 9.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/1.2/javacpp-presets-1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/1.2/javacpp-presets-1.2.pom (23 KB at 92.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp/1.2/javacpp-1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp/1.2/javacpp-1.2.pom (9 KB at 35.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/ffmpeg/3.0.2-1.2/ffmpeg-3.0.2-1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/ffmpeg/3.0.2-1.2/ffmpeg-3.0.2-1.2.pom (3 KB at 10.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/leptonica/1.73-1.2/leptonica-1.73-1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/leptonica/1.73-1.2/leptonica-1.73-1.2.pom (3 KB at 10.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-nlp/0.6.0/deeplearning4j-nlp-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-nlp/0.6.0/deeplearning4j-nlp-0.6.0.pom (3 KB at 11.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-nlp-parent/0.6.0/deeplearning4j-nlp-parent-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-nlp-parent/0.6.0/deeplearning4j-nlp-parent-0.6.0.pom (682 B at 2.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/directory/studio/org.apache.commons.codec/1.8/org.apache.commons.codec-1.8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/directory/studio/org.apache.commons.codec/1.8/org.apache.commons.codec-1.8.pom (5 KB at 19.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/directory/studio/parent-libraries/2.0.0.v20130628/parent-libraries-2.0.0.v20130628.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/directory/studio/parent-libraries/2.0.0.v20130628/parent-libraries-2.0.0.v20130628.pom (3 KB at 9.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/directory/studio/parent/2.0.0.v20130628/parent-2.0.0.v20130628.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/directory/studio/parent/2.0.0.v20130628/parent-2.0.0.v20130628.pom (72 KB at 191.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/directory/project/project/31/project-31.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/directory/project/project/31/project-31.pom (27 KB at 105.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.8/commons-codec-1.8.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.8/commons-codec-1.8.pom (12 KB at 45.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom (49 KB at 188.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom (18 KB at 69.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/17/commons-parent-17.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/17/commons-parent-17.pom (31 KB at 121.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom (15 KB at 58.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-assets/0.8.0/dropwizard-assets-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-assets/0.8.0/dropwizard-assets-0.8.0.pom (966 B at 3.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-parent/0.8.0/dropwizard-parent-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-parent/0.8.0/dropwizard-parent-0.8.0.pom (20 KB at 74.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-core/0.8.0/dropwizard-core-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-core/0.8.0/dropwizard-core-0.8.0.pom (6 KB at 23.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-util/0.8.0/dropwizard-util-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-util/0.8.0/dropwizard-util-0.8.0.pom (2 KB at 5.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.pom (4 KB at 15.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.7/joda-time-2.7.pom
Downloaded: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.7/joda-time-2.7.pom (28 KB at 111.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-jackson/0.8.0/dropwizard-jackson-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-jackson/0.8.0/dropwizard-jackson-0.8.0.pom (5 KB at 19.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk7/2.5.1/jackson-datatype-jdk7-2.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk7/2.5.1/jackson-datatype-jdk7-2.5.1.pom (3 KB at 11.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.5.1/jackson-datatype-guava-2.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.5.1/jackson-datatype-guava-2.5.1.pom (4 KB at 13.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-afterburner/2.5.1/jackson-module-afterburner-2.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-afterburner/2.5.1/jackson-module-afterburner-2.5.1.pom (5 KB at 18.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.5.1/jackson-datatype-joda-2.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.5.1/jackson-datatype-joda-2.5.1.pom (4 KB at 14.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.1.2/logback-classic-1.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.1.2/logback-classic-1.1.2.pom (12 KB at 47.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.1.2/logback-parent-1.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.1.2/logback-parent-1.1.2.pom (15 KB at 59.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.1.2/logback-core-1.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.1.2/logback-core-1.1.2.pom (5 KB at 20.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-validation/0.8.0/dropwizard-validation-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-validation/0.8.0/dropwizard-validation-0.8.0.pom (2 KB at 4.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/hibernate/hibernate-validator/5.1.3.Final/hibernate-validator-5.1.3.Final.pom
Downloaded: https://repo.maven.apache.org/maven2/org/hibernate/hibernate-validator/5.1.3.Final/hibernate-validator-5.1.3.Final.pom (14 KB at 54.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/hibernate/hibernate-validator-parent/5.1.3.Final/hibernate-validator-parent-5.1.3.Final.pom
Downloaded: https://repo.maven.apache.org/maven2/org/hibernate/hibernate-validator-parent/5.1.3.Final/hibernate-validator-parent-5.1.3.Final.pom (27 KB at 105.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.0.2.Final/arquillian-bom-1.0.2.Final.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.0.2.Final/arquillian-bom-1.0.2.Final.pom (11 KB at 42.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/shrinkwrap-bom/1.0.1/shrinkwrap-bom-1.0.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/shrinkwrap-bom/1.0.1/shrinkwrap-bom-1.0.1.pom (4 KB at 12.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/1.0.0-beta-7/shrinkwrap-resolver-bom-1.0.0-beta-7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/1.0.0-beta-7/shrinkwrap-resolver-bom-1.0.0-beta-7.pom (4 KB at 13.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-3/shrinkwrap-descriptors-bom-2.0.0-alpha-3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-3/shrinkwrap-descriptors-bom-2.0.0-alpha-3.pom (5 KB at 17.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.pom
Downloaded: https://repo.maven.apache.org/maven2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.pom (8 KB at 31.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.1.3.GA/jboss-logging-3.1.3.GA.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.1.3.GA/jboss-logging-3.1.3.GA.pom (5 KB at 20.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/9/jboss-parent-9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/9/jboss-parent-9.pom (28 KB at 112.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.0.0/classmate-1.0.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.0.0/classmate-1.0.0.pom (7 KB at 26.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/javax.el/3.0.0/javax.el-3.0.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/javax.el/3.0.0/javax.el-3.0.0.pom (18 KB at 70.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom
Downloaded: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (5 KB at 19.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-configuration/0.8.0/dropwizard-configuration-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-configuration/0.8.0/dropwizard-configuration-0.8.0.pom (2 KB at 8.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.3.2/commons-lang3-3.3.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.3.2/commons-lang3-3.3.2.pom (20 KB at 80.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-logging/0.8.0/dropwizard-logging-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-logging/0.8.0/dropwizard-logging-0.8.0.pom (4 KB at 12.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-logback/3.1.0/metrics-logback-3.1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-logback/3.1.0/metrics-logback-3.1.0.pom (2 KB at 4.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.1.0/metrics-parent-3.1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.1.0/metrics-parent-3.1.0.pom (12 KB at 49.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.0/metrics-core-3.1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.0/metrics-core-3.1.0.pom (846 B at 3.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.10/jul-to-slf4j-1.7.10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.10/jul-to-slf4j-1.7.10.pom (2 KB at 7.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom (3 KB at 11.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom (12 KB at 47.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/log4j-over-slf4j/1.7.10/log4j-over-slf4j-1.7.10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/log4j-over-slf4j/1.7.10/log4j-over-slf4j-1.7.10.pom (2 KB at 7.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.10/jcl-over-slf4j-1.7.10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.10/jcl-over-slf4j-1.7.10.pom (2 KB at 7.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.2.9.v20150224/jetty-util-9.2.9.v20150224.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.2.9.v20150224/jetty-util-9.2.9.v20150224.pom (4 KB at 14.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.2.9.v20150224/jetty-project-9.2.9.v20150224.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.2.9.v20150224/jetty-project-9.2.9.v20150224.pom (35 KB at 137.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-parent/23/jetty-parent-23.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-parent/23/jetty-parent-23.pom (22 KB at 86.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-metrics/0.8.0/dropwizard-metrics-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-metrics/0.8.0/dropwizard-metrics-0.8.0.pom (3 KB at 9.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-lifecycle/0.8.0/dropwizard-lifecycle-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-lifecycle/0.8.0/dropwizard-lifecycle-0.8.0.pom (2 KB at 6.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.2.9.v20150224/jetty-server-9.2.9.v20150224.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.2.9.v20150224/jetty-server-9.2.9.v20150224.pom (5 KB at 16.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom (14 KB at 54.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.2.9.v20150224/jetty-http-9.2.9.v20150224.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.2.9.v20150224/jetty-http-9.2.9.v20150224.pom (3 KB at 10.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.2.9.v20150224/jetty-io-9.2.9.v20150224.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.2.9.v20150224/jetty-io-9.2.9.v20150224.pom (3 KB at 9.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-jersey/0.8.0/dropwizard-jersey-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-jersey/0.8.0/dropwizard-jersey-0.8.0.pom (5 KB at 18.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/core/jersey-server/2.16/jersey-server-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/core/jersey-server/2.16/jersey-server-2.16.pom (11 KB at 43.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/project/2.16/project-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/project/2.16/project-2.16.pom (66 KB at 178.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom
Downloaded: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom (8 KB at 31.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-bom/2.4.0-b09/hk2-bom-2.4.0-b09.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-bom/2.4.0-b09/hk2-bom-2.4.0-b09.pom (19 KB at 76.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/5/jvnet-parent-5.pom
Downloaded: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/5/jvnet-parent-5.pom (9 KB at 35.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/core/jersey-common/2.16/jersey-common-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/core/jersey-common/2.16/jersey-common-2.16.pom (10 KB at 38.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/ws/rs/javax.ws.rs-api/2.0.1/javax.ws.rs-api-2.0.1.pom
Downloaded: https://repo.maven.apache.org/maven2/javax/ws/rs/javax.ws.rs-api/2.0.1/javax.ws.rs-api-2.0.1.pom (21 KB at 83.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom (14 KB at 53.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/bundles/repackaged/jersey-guava/2.16/jersey-guava-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/bundles/repackaged/jersey-guava/2.16/jersey-guava-2.16.pom (12 KB at 49.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/bundles/repackaged/project/2.16/project-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/bundles/repackaged/project/2.16/project-2.16.pom (3 KB at 11.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/bundles/project/2.16/project-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/bundles/project/2.16/project-2.16.pom (4 KB at 12.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-api/2.4.0-b09/hk2-api-2.4.0-b09.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-api/2.4.0-b09/hk2-api-2.4.0-b09.pom (5 KB at 18.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-parent/2.4.0-b09/hk2-parent-2.4.0-b09.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-parent/2.4.0-b09/hk2-parent-2.4.0-b09.pom (42 KB at 163.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-utils/2.4.0-b09/hk2-utils-2.4.0-b09.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-utils/2.4.0-b09/hk2-utils-2.4.0-b09.pom (6 KB at 20.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/external/aopalliance-repackaged/2.4.0-b09/aopalliance-repackaged-2.4.0-b09.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/external/aopalliance-repackaged/2.4.0-b09/aopalliance-repackaged-2.4.0-b09.pom (7 KB at 27.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/external/2.4.0-b09/external-2.4.0-b09.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/external/2.4.0-b09/external-2.4.0-b09.pom (3 KB at 11.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/external/javax.inject/2.4.0-b09/javax.inject-2.4.0-b09.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/external/javax.inject/2.4.0-b09/javax.inject-2.4.0-b09.pom (7 KB at 26.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-locator/2.4.0-b09/hk2-locator-2.4.0-b09.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-locator/2.4.0-b09/hk2-locator-2.4.0-b09.pom (6 KB at 22.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom
Downloaded: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 2.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.18.1-GA/javassist-3.18.1-GA.pom
Downloaded: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.18.1-GA/javassist-3.18.1-GA.pom (10 KB at 38.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/osgi-resource-locator/1.0.1/osgi-resource-locator-1.0.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/osgi-resource-locator/1.0.1/osgi-resource-locator-1.0.1.pom (7 KB at 24.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/pom/8/pom-8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/pom/8/pom-8.pom (11 KB at 42.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/core/jersey-client/2.16/jersey-client-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/core/jersey-client/2.16/jersey-client-2.16.pom (6 KB at 24.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/media/jersey-media-jaxb/2.16/jersey-media-jaxb-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/media/jersey-media-jaxb/2.16/jersey-media-jaxb-2.16.pom (7 KB at 25.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/media/project/2.16/project-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/media/project/2.16/project-2.16.pom (3 KB at 12.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/ext/jersey-metainf-services/2.16/jersey-metainf-services-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/ext/jersey-metainf-services/2.16/jersey-metainf-services-2.16.pom (6 KB at 21.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/ext/project/2.16/project-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/ext/project/2.16/project-2.16.pom (4 KB at 14.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jersey2/3.1.0/metrics-jersey2-3.1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jersey2/3.1.0/metrics-jersey2-3.1.0.pom (2 KB at 7.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-annotation/3.1.0/metrics-annotation-3.1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-annotation/3.1.0/metrics-annotation-3.1.0.pom (702 B at 2.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.5.1/jackson-jaxrs-json-provider-2.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.5.1/jackson-jaxrs-json-provider-2.5.1.pom (4 KB at 14.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.5.1/jackson-jaxrs-providers-2.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.5.1/jackson-jaxrs-providers-2.5.1.pom (4 KB at 15.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.5.1/jackson-jaxrs-base-2.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.5.1/jackson-jaxrs-base-2.5.1.pom (2 KB at 7.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.5.1/jackson-module-jaxb-annotations-2.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.5.1/jackson-module-jaxb-annotations-2.5.1.pom (5 KB at 17.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/containers/jersey-container-servlet/2.16/jersey-container-servlet-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/containers/jersey-container-servlet/2.16/jersey-container-servlet-2.16.pom (5 KB at 18.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/containers/project/2.16/project-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/containers/project/2.16/project-2.16.pom (4 KB at 15.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/containers/jersey-container-servlet-core/2.16/jersey-container-servlet-core-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/containers/jersey-container-servlet-core/2.16/jersey-container-servlet-core-2.16.pom (5 KB at 18.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.2.9.v20150224/jetty-webapp-9.2.9.v20150224.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.2.9.v20150224/jetty-webapp-9.2.9.v20150224.pom (4 KB at 14.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.2.9.v20150224/jetty-xml-9.2.9.v20150224.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.2.9.v20150224/jetty-xml-9.2.9.v20150224.pom (2 KB at 8.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.2.9.v20150224/jetty-servlet-9.2.9.v20150224.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.2.9.v20150224/jetty-servlet-9.2.9.v20150224.pom (4 KB at 13.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.2.9.v20150224/jetty-security-9.2.9.v20150224.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.2.9.v20150224/jetty-security-9.2.9.v20150224.pom (3 KB at 11.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-continuation/9.2.9.v20150224/jetty-continuation-9.2.9.v20150224.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-continuation/9.2.9.v20150224/jetty-continuation-9.2.9.v20150224.pom (2 KB at 8.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-servlets/0.8.0/dropwizard-servlets-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-servlets/0.8.0/dropwizard-servlets-0.8.0.pom (3 KB at 12.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-jetty/0.8.0/dropwizard-jetty-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-jetty/0.8.0/dropwizard-jetty-0.8.0.pom (3 KB at 11.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jetty9/3.1.0/metrics-jetty9-3.1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jetty9/3.1.0/metrics-jetty9-3.1.0.pom (2 KB at 7.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlets/9.2.9.v20150224/jetty-servlets-9.2.9.v20150224.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlets/9.2.9.v20150224/jetty-servlets-9.2.9.v20150224.pom (4 KB at 15.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.0/metrics-jvm-3.1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.0/metrics-jvm-3.1.0.pom (967 B at 3.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-servlets/3.1.0/metrics-servlets-3.1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-servlets/3.1.0/metrics-servlets-3.1.0.pom (3 KB at 10.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-healthchecks/3.1.0/metrics-healthchecks-3.1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-healthchecks/3.1.0/metrics-healthchecks-3.1.0.pom (2 KB at 4.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.0/metrics-json-3.1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.0/metrics-json-3.1.0.pom (2 KB at 5.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/sourceforge/argparse4j/argparse4j/0.4.4/argparse4j-0.4.4.pom
Downloaded: https://repo.maven.apache.org/maven2/net/sourceforge/argparse4j/argparse4j/0.4.4/argparse4j-0.4.4.pom (6 KB at 22.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/setuid/jetty-setuid-java/1.0.2/jetty-setuid-java-1.0.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/setuid/jetty-setuid-java/1.0.2/jetty-setuid-java-1.0.2.pom (2 KB at 6.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/setuid/jetty-setuid-parent/1.0.2/jetty-setuid-parent-1.0.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/setuid/jetty-setuid-parent/1.0.2/jetty-setuid-parent-1.0.2.pom (5 KB at 17.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/jetty-toolchain/1.4/jetty-toolchain-1.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/jetty-toolchain/1.4/jetty-toolchain-1.4.pom (2 KB at 5.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-parent/18/jetty-parent-18.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-parent/18/jetty-parent-18.pom (17 KB at 66.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-views-mustache/0.8.0/dropwizard-views-mustache-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-views-mustache/0.8.0/dropwizard-views-mustache-0.8.0.pom (2 KB at 6.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-views/0.8.0/dropwizard-views-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-views/0.8.0/dropwizard-views-0.8.0.pom (763 B at 3.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/github/spullara/mustache/java/compiler/0.8.17/compiler-0.8.17.pom
Downloaded: https://repo.maven.apache.org/maven2/com/github/spullara/mustache/java/compiler/0.8.17/compiler-0.8.17.pom (5 KB at 17.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/github/spullara/mustache/java/mustache.java/0.8.17/mustache.java-0.8.17.pom
Downloaded: https://repo.maven.apache.org/maven2/com/github/spullara/mustache/java/mustache.java/0.8.17/mustache.java-0.8.17.pom (4 KB at 15.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-views-freemarker/0.8.0/dropwizard-views-freemarker-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-views-freemarker/0.8.0/dropwizard-views-freemarker-0.8.0.pom (2 KB at 5.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/freemarker/freemarker/2.3.21/freemarker-2.3.21.pom
Downloaded: https://repo.maven.apache.org/maven2/org/freemarker/freemarker/2.3.21/freemarker-2.3.21.pom (2 KB at 6.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-jackson/0.6.0/nd4j-jackson-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-jackson/0.6.0/nd4j-jackson-0.6.0.pom (2 KB at 4.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-serde/0.6.0/nd4j-serde-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-serde/0.6.0/nd4j-serde-0.6.0.pom (709 B at 2.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-ui/0.6.0/deeplearning4j-ui-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-ui/0.6.0/deeplearning4j-ui-0.6.0.pom (4 KB at 15.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-ui-parent/0.6.0/deeplearning4j-ui-parent-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-ui-parent/0.6.0/deeplearning4j-ui-parent-0.6.0.pom (668 B at 2.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.pom (7 KB at 27.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/19.0/guava-parent-19.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/19.0/guava-parent-19.0.pom (10 KB at 40.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-client/0.8.0/dropwizard-client-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-client/0.8.0/dropwizard-client-0.8.0.pom (2 KB at 8.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-httpclient/3.1.0/metrics-httpclient-3.1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-httpclient/3.1.0/metrics-httpclient-3.1.0.pom (2 KB at 4.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.3.5/httpclient-4.3.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.3.5/httpclient-4.3.5.pom (6 KB at 21.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.3.5/httpcomponents-client-4.3.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.3.5/httpcomponents-client-4.3.5.pom (16 KB at 61.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/7/project-7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/7/project-7.pom (27 KB at 93.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.3.2/httpcore-4.3.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.3.2/httpcore-4.3.2.pom (5 KB at 18.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.3.2/httpcomponents-core-4.3.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.3.2/httpcomponents-core-4.3.2.pom (12 KB at 24.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.6/commons-codec-1.6.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.6/commons-codec-1.6.pom (11 KB at 35.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom (41 KB at 142.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/connectors/jersey-apache-connector/2.16/jersey-apache-connector-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/connectors/jersey-apache-connector/2.16/jersey-apache-connector-2.16.pom (5 KB at 15.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/connectors/project/2.16/project-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/connectors/project/2.16/project-2.16.pom (4 KB at 13.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-forms/0.8.0/dropwizard-forms-0.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-forms/0.8.0/dropwizard-forms-0.8.0.pom (1017 B at 4.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/media/jersey-media-multipart/2.16/jersey-media-multipart-2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/media/jersey-media-multipart/2.16/jersey-media-multipart-2.16.pom (5 KB at 20.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jvnet/mimepull/mimepull/1.9.3/mimepull-1.9.3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jvnet/mimepull/mimepull/1.9.3/mimepull-1.9.3.pom (13 KB at 49.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/datavec/datavec-data-codec/0.6.0/datavec-data-codec-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/datavec/datavec-data-codec/0.6.0/datavec-data-codec-0.6.0.pom (3 KB at 8.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jcodec/jcodec/0.1.5/jcodec-0.1.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jcodec/jcodec/0.1.5/jcodec-0.1.5.pom (3 KB at 12.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/jfree/jfreechart/1.0.13/jfreechart-1.0.13.pom
Downloaded: https://repo.maven.apache.org/maven2/jfree/jfreechart/1.0.13/jfreechart-1.0.13.pom (2 KB at 5.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/jfree/jcommon/1.0.16/jcommon-1.0.16.pom
Downloaded: https://repo.maven.apache.org/maven2/jfree/jcommon/1.0.16/jcommon-1.0.16.pom (2 KB at 5.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/arbiter-deeplearning4j/0.6.0/arbiter-deeplearning4j-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/arbiter-deeplearning4j/0.6.0/arbiter-deeplearning4j-0.6.0.pom (2 KB at 7.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/arbiter/0.6.0/arbiter-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/arbiter/0.6.0/arbiter-0.6.0.pom (13 KB at 47.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/arbiter-core/0.6.0/arbiter-core-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/arbiter-core/0.6.0/arbiter-core-0.6.0.pom (4 KB at 14.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.pom (3 KB at 11.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.21/slf4j-parent-1.7.21.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.21/slf4j-parent-1.7.21.pom (14 KB at 52.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-ui-components/0.6.0/deeplearning4j-ui-components-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-ui-components/0.6.0/deeplearning4j-ui-components-0.6.0.pom (2 KB at 7.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/args4j/args4j/2.33/args4j-2.33.pom
Downloaded: https://repo.maven.apache.org/maven2/args4j/args4j/2.33/args4j-2.33.pom (2 KB at 5.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/args4j/args4j-site/2.33/args4j-site-2.33.pom
Downloaded: https://repo.maven.apache.org/maven2/args4j/args4j-site/2.33/args4j-site-2.33.pom (5 KB at 17.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/kohsuke/pom/14/pom-14.pom
Downloaded: https://repo.maven.apache.org/maven2/org/kohsuke/pom/14/pom-14.pom (6 KB at 21.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/projectlombok/lombok/1.16.8/lombok-1.16.8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/projectlombok/lombok/1.16.8/lombok-1.16.8.pom (2 KB at 6.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native-platform/0.6.0/nd4j-native-platform-0.6.0.jar
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native/0.6.0/nd4j-native-0.6.0.jar
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native-api/0.6.0/nd4j-native-api-0.6.0.jar
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native/0.6.0/nd4j-native-0.6.0-linux-x86_64.jar
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native/0.6.0/nd4j-native-0.6.0-macosx-x86_64.jar
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native-platform/0.6.0/nd4j-native-platform-0.6.0.jar (2 KB at 5.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native/0.6.0/nd4j-native-0.6.0-windows-x86_64.jar
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native-api/0.6.0/nd4j-native-api-0.6.0.jar (21 KB at 73.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native/0.6.0/nd4j-native-0.6.0-linux-ppc64le.jar
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native/0.6.0/nd4j-native-0.6.0.jar (45 KB at 109.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-core/0.6.0/deeplearning4j-core-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-core/0.6.0/deeplearning4j-core-0.6.0.jar (178 KB at 93.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.12/slf4j-api-1.7.12.jar
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.12/slf4j-api-1.7.12.jar (32 KB at 7.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-nn/0.6.0/deeplearning4j-nn-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-nn/0.6.0/deeplearning4j-nn-0.6.0.jar (681 KB at 68.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.4.1/commons-math3-3.4.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.4.1/commons-math3-3.4.1.jar (1988 KB at 62.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar (181 KB at 5.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.8/commons-compress-1.8.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.8/commons-compress-1.8.jar (357 KB at 8.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.5/xz-1.5.jar
Downloaded: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.5/xz-1.5.jar (98 KB at 2.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-api/0.6.0/nd4j-api-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-api/0.6.0/nd4j-api-0.6.0.jar (717 KB at 15.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-buffer/0.6.0/nd4j-buffer-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-buffer/0.6.0/nd4j-buffer-0.6.0.jar (58 KB at 1.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-common/0.6.0/nd4j-common-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-common/0.6.0/nd4j-common-0.6.0.jar (122 KB at 2.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.9.10/reflections-0.9.10.jar
Downloaded: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.9.10/reflections-0.9.10.jar (127 KB at 2.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/code/findbugs/annotations/2.0.1/annotations-2.0.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native/0.6.0/nd4j-native-0.6.0-linux-ppc64le.jar (4738 KB at 92.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-context/0.6.0/nd4j-context-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/com/google/code/findbugs/annotations/2.0.1/annotations-2.0.1.jar (73 KB at 1.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.3.1/commons-lang3-3.3.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-context/0.6.0/nd4j-context-0.6.0.jar (8 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.5.1/jackson-core-2.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.5.1/jackson-core-2.5.1.jar (225 KB at 4.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.5.1/jackson-databind-2.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.3.1/commons-lang3-3.3.1.jar (404 KB at 7.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/json/json/20131018/json-20131018.jar
Downloaded: https://repo.maven.apache.org/maven2/org/json/json/20131018/json-20131018.jar (64 KB at 1.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.5.1/jackson-annotations-2.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.5.1/jackson-annotations-2.5.1.jar (39 KB at 0.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/projectlombok/lombok/1.16.4/lombok-1.16.4.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.5.1/jackson-databind-2.5.1.jar (1113 KB at 19.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.5.1/jackson-dataformat-yaml-2.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/projectlombok/lombok/1.16.4/lombok-1.16.4.jar (1325 KB at 23.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.12/snakeyaml-1.12.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.5.1/jackson-dataformat-yaml-2.5.1.jar (315 KB at 5.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/datavec/datavec-nd4j-common/0.6.0/datavec-nd4j-common-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/datavec/datavec-nd4j-common/0.6.0/datavec-nd4j-common-0.6.0.jar (9 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/datavec/datavec-api/0.6.0/datavec-api-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.12/snakeyaml-1.12.jar (265 KB at 4.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.4.4/jackson-datatype-joda-2.4.4.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.4.4/jackson-datatype-joda-2.4.4.jar (55 KB at 0.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9.2/joda-time-2.9.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/datavec/datavec-api/0.6.0/datavec-api-0.6.0.jar (538 KB at 9.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/freemarker/freemarker/2.3.23/freemarker-2.3.23.jar
Downloaded: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9.2/joda-time-2.9.2.jar (611 KB at 10.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/datavec/datavec-data-image/0.6.0/datavec-data-image-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native/0.6.0/nd4j-native-0.6.0-linux-x86_64.jar (8278 KB at 135.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/github/jai-imageio/jai-imageio-core/1.3.0/jai-imageio-core-1.3.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/datavec/datavec-data-image/0.6.0/datavec-data-image-0.6.0.jar (59 KB at 1.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-jpeg/3.1.1/imageio-jpeg-3.1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native/0.6.0/nd4j-native-0.6.0-windows-x86_64.jar (9455 KB at 153.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-core/3.1.1/imageio-core-3.1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-jpeg/3.1.1/imageio-jpeg-3.1.1.jar (58 KB at 0.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-metadata/3.1.1/imageio-metadata-3.1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-core/3.1.1/imageio-core-3.1.1.jar (57 KB at 0.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/common/common-lang/3.1.1/common-lang-3.1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-metadata/3.1.1/imageio-metadata-3.1.1.jar (66 KB at 1.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/common/common-io/3.1.1/common-io-3.1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/common/common-lang/3.1.1/common-lang-3.1.1.jar (115 KB at 1.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/common/common-image/3.1.1/common-image-3.1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/common/common-io/3.1.1/common-io-3.1.1.jar (87 KB at 1.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-tiff/3.1.1/imageio-tiff-3.1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/common/common-image/3.1.1/common-image-3.1.1.jar (81 KB at 1.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-psd/3.1.1/imageio-psd-3.1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/freemarker/freemarker/2.3.23/freemarker-2.3.23.jar (1319 KB at 21.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-bmp/3.1.1/imageio-bmp-3.1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-tiff/3.1.1/imageio-tiff-3.1.1.jar (61 KB at 1.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp/1.2.4/javacpp-1.2.4.jar
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-psd/3.1.1/imageio-psd-3.1.1.jar (67 KB at 1.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacv/1.2/javacv-1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/com/twelvemonkeys/imageio/imageio-bmp/3.1.1/imageio-bmp-3.1.1.jar (52 KB at 0.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/opencv/3.1.0-1.2/opencv-3.1.0-1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp/1.2.4/javacpp-1.2.4.jar (305 KB at 4.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/opencv/3.1.0-1.2/opencv-3.1.0-1.2-linux-x86_64.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacv/1.2/javacv-1.2.jar (361 KB at 5.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/opencv/3.1.0-1.2/opencv-3.1.0-1.2-macosx-x86_64.jar
Downloaded: https://repo.maven.apache.org/maven2/com/github/jai-imageio/jai-imageio-core/1.3.0/jai-imageio-core-1.3.0.jar (588 KB at 9.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/opencv/3.1.0-1.2/opencv-3.1.0-1.2-windows-x86_64.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/opencv/3.1.0-1.2/opencv-3.1.0-1.2.jar (648 KB at 10.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/opencv/3.1.0-1.2/opencv-3.1.0-1.2-linux-ppc64le.jar
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-native/0.6.0/nd4j-native-0.6.0-macosx-x86_64.jar (10537 KB at 134.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/ffmpeg/3.0.2-1.2/ffmpeg-3.0.2-1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/ffmpeg/3.0.2-1.2/ffmpeg-3.0.2-1.2.jar (219 KB at 2.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/ffmpeg/3.0.2-1.2/ffmpeg-3.0.2-1.2-linux-x86_64.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/opencv/3.1.0-1.2/opencv-3.1.0-1.2-macosx-x86_64.jar (8275 KB at 101.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/ffmpeg/3.0.2-1.2/ffmpeg-3.0.2-1.2-macosx-x86_64.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/opencv/3.1.0-1.2/opencv-3.1.0-1.2-linux-ppc64le.jar (9352 KB at 112.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/ffmpeg/3.0.2-1.2/ffmpeg-3.0.2-1.2-windows-x86_64.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/opencv/3.1.0-1.2/opencv-3.1.0-1.2-linux-x86_64.jar (8697 KB at 92.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/ffmpeg/3.0.2-1.2/ffmpeg-3.0.2-1.2-linux-ppc64le.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/opencv/3.1.0-1.2/opencv-3.1.0-1.2-windows-x86_64.jar (9789 KB at 102.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/leptonica/1.73-1.2/leptonica-1.73-1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/leptonica/1.73-1.2/leptonica-1.73-1.2.jar (141 KB at 1.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/leptonica/1.73-1.2/leptonica-1.73-1.2-linux-x86_64.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/leptonica/1.73-1.2/leptonica-1.73-1.2-linux-x86_64.jar (2274 KB at 21.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/leptonica/1.73-1.2/leptonica-1.73-1.2-macosx-x86_64.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/ffmpeg/3.0.2-1.2/ffmpeg-3.0.2-1.2-linux-ppc64le.jar (12218 KB at 95.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/leptonica/1.73-1.2/leptonica-1.73-1.2-windows-x86_64.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/ffmpeg/3.0.2-1.2/ffmpeg-3.0.2-1.2-macosx-x86_64.jar (10526 KB at 81.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/leptonica/1.73-1.2/leptonica-1.73-1.2-linux-ppc64le.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/leptonica/1.73-1.2/leptonica-1.73-1.2-macosx-x86_64.jar (2417 KB at 17.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-nlp/0.6.0/deeplearning4j-nlp-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/leptonica/1.73-1.2/leptonica-1.73-1.2-windows-x86_64.jar (2604 KB at 17.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/directory/studio/org.apache.commons.codec/1.8/org.apache.commons.codec-1.8.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/directory/studio/org.apache.commons.codec/1.8/org.apache.commons.codec-1.8.jar (216 KB at 1.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.8/commons-codec-1.8.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.8/commons-codec-1.8.jar (258 KB at 1.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar (278 KB at 1.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-assets/0.8.0/dropwizard-assets-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-assets/0.8.0/dropwizard-assets-0.8.0.jar (4 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-core/0.8.0/dropwizard-core-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-core/0.8.0/dropwizard-core-0.8.0.jar (38 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-util/0.8.0/dropwizard-util-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/leptonica/1.73-1.2/leptonica-1.73-1.2-linux-ppc64le.jar (2310 KB at 15.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-util/0.8.0/dropwizard-util-0.8.0.jar (11 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-jackson/0.8.0/dropwizard-jackson-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.jar (33 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk7/2.5.1/jackson-datatype-jdk7-2.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-jackson/0.8.0/dropwizard-jackson-0.8.0.jar (20 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.5.1/jackson-datatype-guava-2.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk7/2.5.1/jackson-datatype-jdk7-2.5.1.jar (7 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-afterburner/2.5.1/jackson-module-afterburner-2.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.5.1/jackson-datatype-guava-2.5.1.jar (69 KB at 0.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-validation/0.8.0/dropwizard-validation-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-validation/0.8.0/dropwizard-validation-0.8.0.jar (20 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/hibernate/hibernate-validator/5.1.3.Final/hibernate-validator-5.1.3.Final.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-afterburner/2.5.1/jackson-module-afterburner-2.5.1.jar (134 KB at 0.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar
Downloaded: https://repo.maven.apache.org/maven2/org/hibernate/hibernate-validator/5.1.3.Final/hibernate-validator-5.1.3.Final.jar (620 KB at 4.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.1.3.GA/jboss-logging-3.1.3.GA.jar
Downloaded: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.1.3.GA/jboss-logging-3.1.3.GA.jar (56 KB at 0.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.0.0/classmate-1.0.0.jar
Downloaded: https://repo.maven.apache.org/maven2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar (63 KB at 0.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/javax.el/3.0.0/javax.el-3.0.0.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.0.0/classmate-1.0.0.jar (59 KB at 0.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-configuration/0.8.0/dropwizard-configuration-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-configuration/0.8.0/dropwizard-configuration-0.8.0.jar (22 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-logging/0.8.0/dropwizard-logging-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-logging/0.8.0/dropwizard-logging-0.8.0.jar (21 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-logback/3.1.0/metrics-logback-3.1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-logback/3.1.0/metrics-logback-3.1.0.jar (5 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.10/jul-to-slf4j-1.7.10.jar
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.10/jul-to-slf4j-1.7.10.jar (5 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.1.2/logback-core-1.1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.1.2/logback-core-1.1.2.jar (418 KB at 2.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/log4j-over-slf4j/1.7.10/log4j-over-slf4j-1.7.10.jar
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/log4j-over-slf4j/1.7.10/log4j-over-slf4j-1.7.10.jar (24 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.10/jcl-over-slf4j-1.7.10.jar
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.10/jcl-over-slf4j-1.7.10.jar (17 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.2.9.v20150224/jetty-util-9.2.9.v20150224.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/javax.el/3.0.0/javax.el-3.0.0.jar (219 KB at 1.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-metrics/0.8.0/dropwizard-metrics-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.2.9.v20150224/jetty-util-9.2.9.v20150224.jar (347 KB at 2.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-jersey/0.8.0/dropwizard-jersey-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-metrics/0.8.0/dropwizard-metrics-0.8.0.jar (17 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/core/jersey-server/2.16/jersey-server-2.16.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-jersey/0.8.0/dropwizard-jersey-0.8.0.jar (47 KB at 0.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/media/jersey-media-jaxb/2.16/jersey-media-jaxb-2.16.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/media/jersey-media-jaxb/2.16/jersey-media-jaxb-2.16.jar (70 KB at 0.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/ext/jersey-metainf-services/2.16/jersey-metainf-services-2.16.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/ext/jersey-metainf-services/2.16/jersey-metainf-services-2.16.jar (7 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jersey2/3.1.0/metrics-jersey2-3.1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jersey2/3.1.0/metrics-jersey2-3.1.0.jar (13 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.5.1/jackson-jaxrs-json-provider-2.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.5.1/jackson-jaxrs-json-provider-2.5.1.jar (17 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.5.1/jackson-jaxrs-base-2.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.5.1/jackson-jaxrs-base-2.5.1.jar (29 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.5.1/jackson-module-jaxb-annotations-2.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.5.1/jackson-module-jaxb-annotations-2.5.1.jar (32 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/containers/jersey-container-servlet/2.16/jersey-container-servlet-2.16.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/containers/jersey-container-servlet/2.16/jersey-container-servlet-2.16.jar (16 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/containers/jersey-container-servlet-core/2.16/jersey-container-servlet-core-2.16.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/containers/jersey-container-servlet-core/2.16/jersey-container-servlet-core-2.16.jar (57 KB at 0.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.2.9.v20150224/jetty-server-9.2.9.v20150224.jar
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.2.9.v20150224/jetty-server-9.2.9.v20150224.jar (409 KB at 2.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar (94 KB at 0.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.2.9.v20150224/jetty-io-9.2.9.v20150224.jar
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.2.9.v20150224/jetty-io-9.2.9.v20150224.jar (104 KB at 0.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.2.9.v20150224/jetty-webapp-9.2.9.v20150224.jar
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.2.9.v20150224/jetty-webapp-9.2.9.v20150224.jar (106 KB at 0.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.2.9.v20150224/jetty-xml-9.2.9.v20150224.jar
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.2.9.v20150224/jetty-xml-9.2.9.v20150224.jar (44 KB at 0.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-continuation/9.2.9.v20150224/jetty-continuation-9.2.9.v20150224.jar
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-continuation/9.2.9.v20150224/jetty-continuation-9.2.9.v20150224.jar (16 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-jetty/0.8.0/dropwizard-jetty-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-jetty/0.8.0/dropwizard-jetty-0.8.0.jar (34 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jetty9/3.1.0/metrics-jetty9-3.1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jetty9/3.1.0/metrics-jetty9-3.1.0.jar (15 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.2.9.v20150224/jetty-servlet-9.2.9.v20150224.jar
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.2.9.v20150224/jetty-servlet-9.2.9.v20150224.jar (113 KB at 0.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.2.9.v20150224/jetty-security-9.2.9.v20150224.jar
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.2.9.v20150224/jetty-security-9.2.9.v20150224.jar (94 KB at 0.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlets/9.2.9.v20150224/jetty-servlets-9.2.9.v20150224.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/core/jersey-server/2.16/jersey-server-2.16.jar (903 KB at 5.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.2.9.v20150224/jetty-http-9.2.9.v20150224.jar
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlets/9.2.9.v20150224/jetty-servlets-9.2.9.v20150224.jar (120 KB at 0.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-lifecycle/0.8.0/dropwizard-lifecycle-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-lifecycle/0.8.0/dropwizard-lifecycle-0.8.0.jar (11 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.0/metrics-core-3.1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.2.9.v20150224/jetty-http-9.2.9.v20150224.jar (104 KB at 0.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.0/metrics-jvm-3.1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.0/metrics-core-3.1.0.jar (110 KB at 0.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-servlets/3.1.0/metrics-servlets-3.1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-servlets/3.1.0/metrics-servlets-3.1.0.jar (17 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.0/metrics-json-3.1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.0/metrics-jvm-3.1.0.jar (36 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-healthchecks/3.1.0/metrics-healthchecks-3.1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.0/metrics-json-3.1.0.jar (16 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/sourceforge/argparse4j/argparse4j/0.4.4/argparse4j-0.4.4.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-healthchecks/3.1.0/metrics-healthchecks-3.1.0.jar (10 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/setuid/jetty-setuid-java/1.0.2/jetty-setuid-java-1.0.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/setuid/jetty-setuid-java/1.0.2/jetty-setuid-java-1.0.2.jar (13 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-servlets/0.8.0/dropwizard-servlets-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/net/sourceforge/argparse4j/argparse4j/0.4.4/argparse4j-0.4.4.jar (81 KB at 0.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-annotation/3.1.0/metrics-annotation-3.1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-annotation/3.1.0/metrics-annotation-3.1.0.jar (7 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.1.2/logback-classic-1.1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-servlets/0.8.0/dropwizard-servlets-0.8.0.jar (28 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-views-mustache/0.8.0/dropwizard-views-mustache-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-views-mustache/0.8.0/dropwizard-views-mustache-0.8.0.jar (7 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-views/0.8.0/dropwizard-views-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-views/0.8.0/dropwizard-views-0.8.0.jar (9 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/github/spullara/mustache/java/compiler/0.8.17/compiler-0.8.17.jar
Downloaded: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.1.2/logback-classic-1.1.2.jar (265 KB at 1.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-views-freemarker/0.8.0/dropwizard-views-freemarker-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-views-freemarker/0.8.0/dropwizard-views-freemarker-0.8.0.jar (7 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-jackson/0.6.0/nd4j-jackson-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/com/github/spullara/mustache/java/compiler/0.8.17/compiler-0.8.17.jar (114 KB at 0.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-ui/0.6.0/deeplearning4j-ui-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-jackson/0.6.0/nd4j-jackson-0.6.0.jar (7 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-client/0.8.0/dropwizard-client-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-client/0.8.0/dropwizard-client-0.8.0.jar (24 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/core/jersey-client/2.16/jersey-client-2.16.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/core/jersey-client/2.16/jersey-client-2.16.jar (153 KB at 0.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/ws/rs/javax.ws.rs-api/2.0.1/javax.ws.rs-api-2.0.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/ffmpeg/3.0.2-1.2/ffmpeg-3.0.2-1.2-linux-x86_64.jar (10685 KB at 58.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-api/2.4.0-b09/hk2-api-2.4.0-b09.jar
Downloaded: https://repo.maven.apache.org/maven2/org/bytedeco/javacpp-presets/ffmpeg/3.0.2-1.2/ffmpeg-3.0.2-1.2-windows-x86_64.jar (17513 KB at 96.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-utils/2.4.0-b09/hk2-utils-2.4.0-b09.jar
Downloaded: https://repo.maven.apache.org/maven2/javax/ws/rs/javax.ws.rs-api/2.0.1/javax.ws.rs-api-2.0.1.jar (113 KB at 0.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/external/aopalliance-repackaged/2.4.0-b09/aopalliance-repackaged-2.4.0-b09.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/external/aopalliance-repackaged/2.4.0-b09/aopalliance-repackaged-2.4.0-b09.jar (15 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/external/javax.inject/2.4.0-b09/javax.inject-2.4.0-b09.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/external/javax.inject/2.4.0-b09/javax.inject-2.4.0-b09.jar (6 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-locator/2.4.0-b09/hk2-locator-2.4.0-b09.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-utils/2.4.0-b09/hk2-utils-2.4.0-b09.jar (94 KB at 0.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.18.1-GA/javassist-3.18.1-GA.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-api/2.4.0-b09/hk2-api-2.4.0-b09.jar (179 KB at 1.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-httpclient/3.1.0/metrics-httpclient-3.1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-locator/2.4.0-b09/hk2-locator-2.4.0-b09.jar (168 KB at 0.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.3.5/httpclient-4.3.5.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-httpclient/3.1.0/metrics-httpclient-3.1.0.jar (14 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.3.2/httpcore-4.3.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.3.2/httpcore-4.3.2.jar (276 KB at 1.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/connectors/jersey-apache-connector/2.16/jersey-apache-connector-2.16.jar
Downloaded: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.18.1-GA/javassist-3.18.1-GA.jar (698 KB at 3.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-forms/0.8.0/dropwizard-forms-0.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/connectors/jersey-apache-connector/2.16/jersey-apache-connector-2.16.jar (23 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/media/jersey-media-multipart/2.16/jersey-media-multipart-2.16.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/dropwizard-forms/0.8.0/dropwizard-forms-0.8.0.jar (3 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/core/jersey-common/2.16/jersey-common-2.16.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.3.5/httpclient-4.3.5.jar (577 KB at 3.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-nlp/0.6.0/deeplearning4j-nlp-0.6.0.jar (5040 KB at 26.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/jersey/bundles/repackaged/jersey-guava/2.16/jersey-guava-2.16.jar
Downloaded: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar (26 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/hk2/osgi-resource-locator/1.0.1/osgi-resource-locator-1.0.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/media/jersey-media-multipart/2.16/jersey-media-multipart-2.16.jar (63 KB at 0.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jvnet/mimepull/mimepull/1.9.3/mimepull-1.9.3.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/hk2/osgi-resource-locator/1.0.1/osgi-resource-locator-1.0.1.jar (20 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/jvnet/mimepull/mimepull/1.9.3/mimepull-1.9.3.jar (61 KB at 0.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/datavec/datavec-data-codec/0.6.0/datavec-data-codec-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/datavec/datavec-data-codec/0.6.0/datavec-data-codec-0.6.0.jar (8 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jcodec/jcodec/0.1.5/jcodec-0.1.5.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/core/jersey-common/2.16/jersey-common-2.16.jar (661 KB at 3.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/jfree/jfreechart/1.0.13/jfreechart-1.0.13.jar
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-ui/0.6.0/deeplearning4j-ui-0.6.0.jar (2309 KB at 11.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/jfree/jcommon/1.0.16/jcommon-1.0.16.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/jersey/bundles/repackaged/jersey-guava/2.16/jersey-guava-2.16.jar (942 KB at 4.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/arbiter-deeplearning4j/0.6.0/arbiter-deeplearning4j-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/jfree/jcommon/1.0.16/jcommon-1.0.16.jar (478 KB at 2.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/arbiter-core/0.6.0/arbiter-core-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/arbiter-deeplearning4j/0.6.0/arbiter-deeplearning4j-0.6.0.jar (135 KB at 0.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/args4j/args4j/2.33/args4j-2.33.jar
Downloaded: https://repo.maven.apache.org/maven2/org/jcodec/jcodec/0.1.5/jcodec-0.1.5.jar (892 KB at 4.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-ui-components/0.6.0/deeplearning4j-ui-components-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/arbiter-core/0.6.0/arbiter-core-0.6.0.jar (113 KB at 0.5 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-ui-components/0.6.0/deeplearning4j-ui-components-0.6.0.jar (89 KB at 0.4 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/args4j/args4j/2.33/args4j-2.33.jar (152 KB at 0.7 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.jar (2255 KB at 10.9 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/jfree/jfreechart/1.0.13/jfreechart-1.0.13.jar (1393 KB at 6.7 KB/sec)
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ dl4j-examples ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ dl4j-examples ---
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom (7 KB at 26.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom (2 KB at 7.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (2 KB at 7.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (2 KB at 5.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B at 1.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (4 KB at 14.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom (2 KB at 6.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom (3 KB at 8.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom (2 KB at 8.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7 KB at 26.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom (2 KB at 5.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom (4 KB at 13.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (4 KB at 13.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 KB at 58.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom (6 KB at 23.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (9 KB at 34.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (7 KB at 27.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 KB at 45.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom (889 B at 3.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (6 KB at 23.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom (3 KB at 11.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom (3 KB at 12.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom (5 KB at 19.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8 KB at 28.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom (890 B at 3.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom (3 KB at 11.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (16 KB at 59.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar (21 KB at 71.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar (10 KB at 29.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar (14 KB at 33.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar (6 KB at 14.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (30 KB at 45.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar (37 KB at 52.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (14 KB at 18.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar (37 KB at 38.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar (11 KB at 10.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar (43 KB at 32.7 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar (7 KB at 5.2 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar (149 KB at 103.0 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar (60 KB at 36.7 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar (218 KB at 118.3 KB/sec)
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 82 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:compile (default-compile) @ dl4j-examples ---
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (3 KB at 9.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom (22 KB at 68.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 KB at 87.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom (13 KB at 49.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (4 KB at 14.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom (4 KB at 13.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (2 KB at 7.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (6 KB at 21.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (4 KB at 12.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (3 KB at 10.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (2 KB at 5.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (8 KB at 30.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 KB at 42.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 3.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (5 KB at 16.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 KB at 63.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4 KB at 16.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (6 KB at 20.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 KB at 41.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom (7 KB at 26.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom (2 KB at 7.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom (3 KB at 9.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 3.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (6 KB at 21.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3 KB at 11.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (7 KB at 25.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (9 KB at 29.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (6 KB at 20.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (3 KB at 8.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom (2 KB at 7.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (3 KB at 9.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom (3 KB at 10.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom (2 KB at 6.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom (8 KB at 28.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom (3 KB at 8.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom (4 KB at 14.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom (2 KB at 7.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.pom (4 KB at 13.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.1/maven-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.1/maven-2.2.1.pom (22 KB at 82.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/11/maven-parent-11.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/11/maven-parent-11.pom (32 KB at 95.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/apache/5/apache-5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/apache/5/apache-5.pom (5 KB at 16.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom (12 KB at 44.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom (3 KB at 8.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom (4 KB at 13.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom (889 B at 3.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom (2 KB at 7.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom (2 KB at 7.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom (8 KB at 31.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom (3 KB at 11.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom (3 KB at 8.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom (2 KB at 7.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom (2 KB at 5.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom (2 KB at 8.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom (15 KB at 52.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom (2 KB at 6.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom (4 KB at 10.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (2 KB at 7.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (3 KB at 9.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (4 KB at 12.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (9 KB at 32.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom (3 KB at 8.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom (2 KB at 6.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom (2 KB at 7.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom (2 KB at 6.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom (3 KB at 11.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom (4 KB at 12.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom (880 B at 3.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom (2 KB at 7.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom (8 KB at 31.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 KB at 80.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom (5 KB at 17.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom (2 KB at 5.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom (3 KB at 8.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom (2 KB at 5.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom (6 KB at 22.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/21/maven-shared-components-21.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/21/maven-shared-components-21.pom (5 KB at 20.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/25/maven-parent-25.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/25/maven-parent-25.pom (37 KB at 113.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/apache/15/apache-15.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/apache/15/apache-15.pom (15 KB at 58.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom (965 B at 3.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (5 KB at 19.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (7 KB at 25.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom (32 KB at 102.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom (4 KB at 16.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom (5 KB at 19.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.7/plexus-compiler-api-2.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.7/plexus-compiler-api-2.7.pom (891 B at 3.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.7/plexus-compiler-2.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.7/plexus-compiler-2.7.pom (5 KB at 18.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (3 KB at 10.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (21 KB at 78.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom (4 KB at 15.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 KB at 68.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.7/plexus-compiler-manager-2.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.7/plexus-compiler-manager-2.7.pom (711 B at 2.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.7/plexus-compiler-javac-2.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.7/plexus-compiler-javac-2.7.pom (792 B at 3.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.7/plexus-compilers-2.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.7/plexus-compilers-2.7.pom (2 KB at 5.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.jar
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar (48 KB at 118.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar (51 KB at 53.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar (150 KB at 124.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.jar (161 KB at 96.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar (217 KB at 98.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar (46 KB at 18.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar (37 KB at 14.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar (30 KB at 9.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar (145 KB at 39.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar (197 KB at 53.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar (50 KB at 13.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar (14 KB at 3.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar (104 KB at 23.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar (73 KB at 15.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar (60 KB at 11.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar (46 KB at 8.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (5 KB at 0.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.jar (515 KB at 93.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar (106 KB at 18.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (14 KB at 2.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar (28 KB at 4.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.jar (37 KB at 6.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.7/plexus-compiler-api-2.7.jar
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar (461 KB at 77.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.7/plexus-compiler-manager-2.7.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 KB at 2.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.7/plexus-compiler-javac-2.7.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.7/plexus-compiler-api-2.7.jar (26 KB at 4.0 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.7/plexus-compiler-manager-2.7.jar (5 KB at 0.7 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar (32 KB at 4.9 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.7/plexus-compiler-javac-2.7.jar (20 KB at 2.9 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.jar (152 KB at 22.7 KB/sec)
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 50 source files to /Users/USERNAME/dl4j-examples/dl4j-examples/target/classes
[INFO] /Users/USERNAME/dl4j-examples/dl4j-examples/src/main/java/org/deeplearning4j/examples/nlp/word2vec/Word2VecUptrainingExample.java: Some input files use or override a deprecated API.
[INFO] /Users/USERNAME/dl4j-examples/dl4j-examples/src/main/java/org/deeplearning4j/examples/nlp/word2vec/Word2VecUptrainingExample.java: Recompile with -Xlint:deprecation for details.
[INFO] /Users/USERNAME/dl4j-examples/dl4j-examples/src/main/java/org/deeplearning4j/examples/nlp/paragraphvectors/tools/MeansBuilder.java: Some input files use unchecked or unsafe operations.
[INFO] /Users/USERNAME/dl4j-examples/dl4j-examples/src/main/java/org/deeplearning4j/examples/nlp/paragraphvectors/tools/MeansBuilder.java: Recompile with -Xlint:unchecked for details.
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ dl4j-examples ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/USERNAME/dl4j-examples/dl4j-examples/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:testCompile (default-testCompile) @ dl4j-examples ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ dl4j-examples ---
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom (2 KB at 5.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom (19 KB at 62.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom (24 KB at 88.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom (3 KB at 12.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom (3 KB at 10.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom (6 KB at 20.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom (2 KB at 6.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom (16 KB at 61.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom (2 KB at 6.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (4 KB at 12.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 KB at 69.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom (3 KB at 9.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom (3 KB at 8.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom (4 KB at 12.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom (3 KB at 8.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom (3 KB at 10.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom (2 KB at 7.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom (2 KB at 8.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom (8 KB at 30.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom (2 KB at 7.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom (2 KB at 7.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom (2 KB at 5.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom (2 KB at 7.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom (3 KB at 8.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom (2 KB at 5.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom (4 KB at 14.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom (17 KB at 63.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom (4 KB at 14.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (10 KB at 32.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 KB at 83.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (2 KB at 5.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar (13 KB at 32.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar (34 KB at 55.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar (31 KB at 40.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar (115 KB at 106.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar (257 KB at 143.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar (87 KB at 42.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar (119 KB at 48.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar (48 KB at 19.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar (57 KB at 18.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar (35 KB at 11.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar (86 KB at 26.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar (227 KB at 70.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar (29 KB at 8.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar (10 KB at 2.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar (309 KB at 86.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar (24 KB at 6.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar (21 KB at 5.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar (14 KB at 3.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar (11 KB at 2.6 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar (37 KB at 8.9 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar (14 KB at 3.3 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar (38 KB at 8.9 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar (156 KB at 36.4 KB/sec)
[INFO] No tests to run.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ dl4j-examples ---
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom (5 KB at 18.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom (3 KB at 10.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom (2 KB at 7.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom (3 KB at 10.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom (19 KB at 70.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom (1018 B at 4.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom (10 KB at 38.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar
Downloading: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar (60 KB at 100.8 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar (22 KB at 26.5 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar (181 KB at 193.9 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar (57 KB at 41.7 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar (203 KB at 89.7 KB/sec)
[INFO] Building jar: /Users/USERNAME/dl4j-examples/dl4j-examples/target/dl4j-examples-0.5-SNAPSHOT.jar
[INFO]
[INFO] --- maven-shade-plugin:2.4.3:shade (default) @ dl4j-examples ---
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom (4 KB at 15.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom (2 KB at 7.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom (13 KB at 46.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom (2 KB at 7.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.2/asm-5.0.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.2/asm-5.0.2.pom (2 KB at 7.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.2/asm-parent-5.0.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.2/asm-parent-5.0.2.pom (6 KB at 21.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.3/ow2-1.3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.3/ow2-1.3.pom (10 KB at 37.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/5.0.2/asm-commons-5.0.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/5.0.2/asm-commons-5.0.2.pom (3 KB at 8.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/5.0.2/asm-tree-5.0.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/5.0.2/asm-tree-5.0.2.pom (3 KB at 8.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jdom/jdom/1.1/jdom-1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jdom/jdom/1.1/jdom-1.1.pom (3 KB at 8.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.pom (8 KB at 28.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/20/maven-shared-components-20.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/20/maven-shared-components-20.pom (5 KB at 20.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/24/maven-parent-24.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/24/maven-parent-24.pom (37 KB at 84.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/apache/14/apache-14.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/apache/14/apache-14.pom (15 KB at 56.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom (2 KB at 8.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom (28 KB at 76.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.2/commons-io-2.2.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.2/commons-io-2.2.pom (11 KB at 37.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom (47 KB at 115.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/vafer/jdependency/1.1/jdependency-1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/vafer/jdependency/1.1/jdependency-1.1.pom (11 KB at 37.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom (2 KB at 7.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom (6 KB at 22.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/5.0.4/asm-analysis-5.0.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/5.0.4/asm-analysis-5.0.4.pom (3 KB at 8.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/5.0.4/asm-tree-5.0.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/5.0.4/asm-tree-5.0.4.pom (3 KB at 8.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/5.0.4/asm-commons-5.0.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/5.0.4/asm-commons-5.0.4.pom (3 KB at 8.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/5.0.4/asm-util-5.0.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/5.0.4/asm-util-5.0.4.pom (3 KB at 8.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava/11.0.2/guava-11.0.2.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava/11.0.2/guava-11.0.2.pom (6 KB at 21.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom (2 KB at 8.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.2/asm-5.0.2.jar
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/5.0.2/asm-commons-5.0.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/5.0.2/asm-commons-5.0.2.jar (41 KB at 65.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/5.0.2/asm-tree-5.0.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.2/asm-5.0.2.jar (52 KB at 80.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jdom/jdom/1.1/jdom-1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar (52 KB at 49.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/5.0.2/asm-tree-5.0.2.jar (29 KB at 25.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.jar (63 KB at 36.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.2/commons-io-2.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar (279 KB at 156.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/vafer/jdependency/1.1/jdependency-1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/jdom/jdom/1.1/jdom-1.1.jar (150 KB at 72.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/5.0.4/asm-analysis-5.0.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar (131 KB at 56.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/5.0.4/asm-util-5.0.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/5.0.4/asm-analysis-5.0.4.jar (20 KB at 8.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava/11.0.2/guava-11.0.2.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.2/commons-io-2.2.jar (170 KB at 59.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/5.0.4/asm-util-5.0.4.jar (43 KB at 14.7 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/vafer/jdependency/1.1/jdependency-1.1.jar (22 KB at 6.8 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar (33 KB at 9.6 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar (240 KB at 40.7 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava/11.0.2/guava-11.0.2.jar (1610 KB at 185.9 KB/sec)
[INFO] Including org.nd4j:nd4j-native-platform:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-native:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-native-api:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-native:jar:linux-x86_64:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-native:jar:macosx-x86_64:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-native:jar:windows-x86_64:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-native:jar:linux-ppc64le:0.6.0 in the shaded jar.
[INFO] Including org.deeplearning4j:deeplearning4j-core:jar:0.6.0 in the shaded jar.
[INFO] Including org.slf4j:slf4j-api:jar:1.7.12 in the shaded jar.
[INFO] Including org.deeplearning4j:deeplearning4j-nn:jar:0.6.0 in the shaded jar.
[INFO] Including org.apache.commons:commons-math3:jar:3.4.1 in the shaded jar.
[INFO] Including commons-io:commons-io:jar:2.4 in the shaded jar.
[INFO] Including org.apache.commons:commons-compress:jar:1.8 in the shaded jar.
[INFO] Including org.tukaani:xz:jar:1.5 in the shaded jar.
[INFO] Including org.nd4j:nd4j-api:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-buffer:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-common:jar:0.6.0 in the shaded jar.
[INFO] Including org.reflections:reflections:jar:0.9.10 in the shaded jar.
[INFO] Including com.google.code.findbugs:annotations:jar:2.0.1 in the shaded jar.
[INFO] Including org.nd4j:nd4j-context:jar:0.6.0 in the shaded jar.
[INFO] Including org.apache.commons:commons-lang3:jar:3.3.1 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-core:jar:2.5.1 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-databind:jar:2.5.1 in the shaded jar.
[INFO] Including org.json:json:jar:20131018 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-annotations:jar:2.5.1 in the shaded jar.
[INFO] Including org.projectlombok:lombok:jar:1.16.4 in the shaded jar.
[INFO] Including com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.5.1 in the shaded jar.
[INFO] Including org.yaml:snakeyaml:jar:1.12 in the shaded jar.
[INFO] Including org.datavec:datavec-nd4j-common:jar:0.6.0 in the shaded jar.
[INFO] Including org.datavec:datavec-api:jar:0.6.0 in the shaded jar.
[INFO] Including com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.4.4 in the shaded jar.
[INFO] Including joda-time:joda-time:jar:2.9.2 in the shaded jar.
[INFO] Including org.freemarker:freemarker:jar:2.3.23 in the shaded jar.
[INFO] Including org.datavec:datavec-data-image:jar:0.6.0 in the shaded jar.
[INFO] Including com.github.jai-imageio:jai-imageio-core:jar:1.3.0 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-jpeg:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-core:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-metadata:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.common:common-lang:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.common:common-io:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.common:common-image:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-tiff:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-psd:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-bmp:jar:3.1.1 in the shaded jar.
[INFO] Including org.bytedeco:javacpp:jar:1.2.4 in the shaded jar.
[INFO] Including org.bytedeco:javacv:jar:1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:linux-x86_64:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:macosx-x86_64:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:windows-x86_64:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:linux-ppc64le:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:linux-x86_64:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:macosx-x86_64:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:windows-x86_64:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:linux-ppc64le:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:1.73-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:linux-x86_64:1.73-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:macosx-x86_64:1.73-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:windows-x86_64:1.73-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:linux-ppc64le:1.73-1.2 in the shaded jar.
[INFO] Including org.deeplearning4j:deeplearning4j-nlp:jar:0.6.0 in the shaded jar.
[INFO] Including org.apache.directory.studio:org.apache.commons.codec:jar:1.8 in the shaded jar.
[INFO] Including commons-codec:commons-codec:jar:1.8 in the shaded jar.
[INFO] Including commons-lang:commons-lang:jar:2.6 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-assets:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-core:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-util:jar:0.8.0 in the shaded jar.
[INFO] Including com.google.code.findbugs:jsr305:jar:3.0.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-jackson:jar:0.8.0 in the shaded jar.
[INFO] Including com.fasterxml.jackson.datatype:jackson-datatype-jdk7:jar:2.5.1 in the shaded jar.
[INFO] Including com.fasterxml.jackson.datatype:jackson-datatype-guava:jar:2.5.1 in the shaded jar.
[INFO] Including com.fasterxml.jackson.module:jackson-module-afterburner:jar:2.5.1 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-validation:jar:0.8.0 in the shaded jar.
[INFO] Including org.hibernate:hibernate-validator:jar:5.1.3.Final in the shaded jar.
[INFO] Including javax.validation:validation-api:jar:1.1.0.Final in the shaded jar.
[INFO] Including org.jboss.logging:jboss-logging:jar:3.1.3.GA in the shaded jar.
[INFO] Including com.fasterxml:classmate:jar:1.0.0 in the shaded jar.
[INFO] Including org.glassfish:javax.el:jar:3.0.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-configuration:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-logging:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-logback:jar:3.1.0 in the shaded jar.
[INFO] Including org.slf4j:jul-to-slf4j:jar:1.7.10 in the shaded jar.
[INFO] Including ch.qos.logback:logback-core:jar:1.1.2 in the shaded jar.
[INFO] Including org.slf4j:log4j-over-slf4j:jar:1.7.10 in the shaded jar.
[INFO] Including org.slf4j:jcl-over-slf4j:jar:1.7.10 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-util:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-metrics:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-jersey:jar:0.8.0 in the shaded jar.
[INFO] Including org.glassfish.jersey.core:jersey-server:jar:2.16 in the shaded jar.
[INFO] Including org.glassfish.jersey.media:jersey-media-jaxb:jar:2.16 in the shaded jar.
[INFO] Including org.glassfish.jersey.ext:jersey-metainf-services:jar:2.16 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-jersey2:jar:3.1.0 in the shaded jar.
[INFO] Including com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:jar:2.5.1 in the shaded jar.
[INFO] Including com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:jar:2.5.1 in the shaded jar.
[INFO] Including com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.5.1 in the shaded jar.
[INFO] Including org.glassfish.jersey.containers:jersey-container-servlet:jar:2.16 in the shaded jar.
[INFO] Including org.glassfish.jersey.containers:jersey-container-servlet-core:jar:2.16 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-server:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including javax.servlet:javax.servlet-api:jar:3.1.0 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-io:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-webapp:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-xml:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-continuation:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-jetty:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-jetty9:jar:3.1.0 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-servlet:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-security:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-servlets:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-http:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-lifecycle:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-core:jar:3.1.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-jvm:jar:3.1.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-servlets:jar:3.1.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-json:jar:3.1.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-healthchecks:jar:3.1.0 in the shaded jar.
[INFO] Including net.sourceforge.argparse4j:argparse4j:jar:0.4.4 in the shaded jar.
[INFO] Including org.eclipse.jetty.toolchain.setuid:jetty-setuid-java:jar:1.0.2 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-servlets:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-annotation:jar:3.1.0 in the shaded jar.
[INFO] Including ch.qos.logback:logback-classic:jar:1.1.2 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-views-mustache:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-views:jar:0.8.0 in the shaded jar.
[INFO] Including com.github.spullara.mustache.java:compiler:jar:0.8.17 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-views-freemarker:jar:0.8.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-jackson:jar:0.6.0 in the shaded jar.
[INFO] Including org.deeplearning4j:deeplearning4j-ui:jar:0.6.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-client:jar:0.8.0 in the shaded jar.
[INFO] Including org.glassfish.jersey.core:jersey-client:jar:2.16 in the shaded jar.
[INFO] Including javax.ws.rs:javax.ws.rs-api:jar:2.0.1 in the shaded jar.
[INFO] Including org.glassfish.hk2:hk2-api:jar:2.4.0-b09 in the shaded jar.
[INFO] Including org.glassfish.hk2:hk2-utils:jar:2.4.0-b09 in the shaded jar.
[INFO] Including org.glassfish.hk2.external:aopalliance-repackaged:jar:2.4.0-b09 in the shaded jar.
[INFO] Including org.glassfish.hk2.external:javax.inject:jar:2.4.0-b09 in the shaded jar.
[INFO] Including org.glassfish.hk2:hk2-locator:jar:2.4.0-b09 in the shaded jar.
[INFO] Including org.javassist:javassist:jar:3.18.1-GA in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-httpclient:jar:3.1.0 in the shaded jar.
[INFO] Including org.apache.httpcomponents:httpclient:jar:4.3.5 in the shaded jar.
[INFO] Including org.apache.httpcomponents:httpcore:jar:4.3.2 in the shaded jar.
[INFO] Including org.glassfish.jersey.connectors:jersey-apache-connector:jar:2.16 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-forms:jar:0.8.0 in the shaded jar.
[INFO] Including org.glassfish.jersey.media:jersey-media-multipart:jar:2.16 in the shaded jar.
[INFO] Including org.glassfish.jersey.core:jersey-common:jar:2.16 in the shaded jar.
[INFO] Including javax.annotation:javax.annotation-api:jar:1.2 in the shaded jar.
[INFO] Including org.glassfish.jersey.bundles.repackaged:jersey-guava:jar:2.16 in the shaded jar.
[INFO] Including org.glassfish.hk2:osgi-resource-locator:jar:1.0.1 in the shaded jar.
[INFO] Including org.jvnet.mimepull:mimepull:jar:1.9.3 in the shaded jar.
[INFO] Including com.google.guava:guava:jar:19.0 in the shaded jar.
[INFO] Including org.datavec:datavec-data-codec:jar:0.6.0 in the shaded jar.
[INFO] Including org.jcodec:jcodec:jar:0.1.5 in the shaded jar.
[INFO] Including jfree:jfreechart:jar:1.0.13 in the shaded jar.
[INFO] Including jfree:jcommon:jar:1.0.16 in the shaded jar.
[INFO] Including org.deeplearning4j:arbiter-deeplearning4j:jar:0.6.0 in the shaded jar.
[INFO] Including org.deeplearning4j:arbiter-core:jar:0.6.0 in the shaded jar.
[INFO] Including args4j:args4j:jar:2.33 in the shaded jar.
[INFO] Including org.deeplearning4j:deeplearning4j-ui-components:jar:0.6.0 in the shaded jar.
[WARNING] annotations-2.0.1.jar, jsr305-3.0.0.jar define 34 overlapping classes:
[WARNING]   - javax.annotation.RegEx
[WARNING]   - javax.annotation.concurrent.Immutable
[WARNING]   - javax.annotation.meta.TypeQualifierDefault
[WARNING]   - javax.annotation.meta.TypeQualifier
[WARNING]   - javax.annotation.Syntax
[WARNING]   - javax.annotation.Nonnull
[WARNING]   - javax.annotation.CheckReturnValue
[WARNING]   - javax.annotation.CheckForNull
[WARNING]   - javax.annotation.meta.TypeQualifierNickname
[WARNING]   - javax.annotation.MatchesPattern
[WARNING]   - 24 more...
[WARNING] maven-shade-plugin has detected that some class files are
[WARNING] present in two or more JARs. When this happens, only one
[WARNING] single version of the class is copied to the uber jar.
[WARNING] Usually this is not harmful and you can skip these warnings,
[WARNING] otherwise try to manually exclude artifacts based on
[WARNING] mvn dependency:tree -Ddetail=true and the above output.
[WARNING] See http://maven.apache.org/plugins/maven-shade-plugin/
[INFO] Attaching shaded artifact.
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ dl4j-examples ---
[INFO] Installing /Users/USERNAME/dl4j-examples/dl4j-examples/target/dl4j-examples-0.5-SNAPSHOT.jar to /Users/USERNAME/.m2/repository/org/deeplearning4j/dl4j-examples/0.5-SNAPSHOT/dl4j-examples-0.5-SNAPSHOT.jar
[INFO] Installing /Users/USERNAME/dl4j-examples/dl4j-examples/pom.xml to /Users/USERNAME/.m2/repository/org/deeplearning4j/dl4j-examples/0.5-SNAPSHOT/dl4j-examples-0.5-SNAPSHOT.pom
[INFO] Installing /Users/USERNAME/dl4j-examples/dl4j-examples/target/dl4j-examples-0.5-SNAPSHOT-bin.jar to /Users/USERNAME/.m2/repository/org/deeplearning4j/dl4j-examples/0.5-SNAPSHOT/dl4j-examples-0.5-SNAPSHOT-bin.jar
[INFO]                                                                      
[INFO] ------------------------------------------------------------------------
[INFO] Building dl4j-spark-examples 0.5-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ dl4j-spark-examples ---
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ dl4j-spark-examples ---
[INFO] Installing /Users/USERNAME/dl4j-examples/dl4j-spark-examples/pom.xml to /Users/USERNAME/.m2/repository/org/deeplearning4j/dl4j-spark-examples/0.5-SNAPSHOT/dl4j-spark-examples-0.5-SNAPSHOT.pom
[INFO]                                                                      
[INFO] ------------------------------------------------------------------------
[INFO] Building dl4j-spark-local 0.5-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/dl4j-spark_2.11/0.6.0/dl4j-spark_2.11-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/dl4j-spark_2.11/0.6.0/dl4j-spark_2.11-0.6.0.pom (5 KB at 18.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/spark/0.6.0/spark-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/spark/0.6.0/spark-0.6.0.pom (3 KB at 11.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-scaleout/0.6.0/deeplearning4j-scaleout-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/deeplearning4j-scaleout/0.6.0/deeplearning4j-scaleout-0.6.0.pom (2 KB at 5.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-mllib_2.11/1.5.2/spark-mllib_2.11-1.5.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-mllib_2.11/1.5.2/spark-mllib_2.11-1.5.2.pom (8 KB at 30.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-parent_2.11/1.5.2/spark-parent_2.11-1.5.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-parent_2.11/1.5.2/spark-parent_2.11-1.5.2.pom (85 KB at 219.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-core_2.11/1.5.2/spark-core_2.11-1.5.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-core_2.11/1.5.2/spark-core_2.11-1.5.2.pom (20 KB at 75.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/avro/avro-mapred/1.7.7/avro-mapred-1.7.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/avro/avro-mapred/1.7.7/avro-mapred-1.7.7.pom (7 KB at 26.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom (19 KB at 61.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom (10 KB at 28.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/avro/avro-ipc/1.7.7/avro-ipc-1.7.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/avro/avro-ipc/1.7.7/avro-ipc-1.7.7.pom (6 KB at 20.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom (6 KB at 22.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom (2 KB at 5.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom (2 KB at 5.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom
Downloaded: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom (2 KB at 6.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom
Downloaded: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom (11 KB at 41.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom (4 KB at 12.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom (13 KB at 49.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom (11 KB at 40.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom (2 KB at 7.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom (3 KB at 9.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom (12 KB at 47.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twitter/chill_2.11/0.5.0/chill_2.11-0.5.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twitter/chill_2.11/0.5.0/chill_2.11-0.5.0.pom (3 KB at 9.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.2/scala-library-2.11.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.2/scala-library-2.11.2.pom (2 KB at 5.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twitter/chill-java/0.5.0/chill-java-0.5.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twitter/chill-java/0.5.0/chill-java-0.5.0.pom (2 KB at 8.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/esotericsoftware/kryo/kryo/2.21/kryo-2.21.pom
Downloaded: https://repo.maven.apache.org/maven2/com/esotericsoftware/kryo/kryo/2.21/kryo-2.21.pom (6 KB at 20.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/esotericsoftware/reflectasm/reflectasm/1.07/reflectasm-1.07.pom
Downloaded: https://repo.maven.apache.org/maven2/com/esotericsoftware/reflectasm/reflectasm/1.07/reflectasm-1.07.pom (4 KB at 12.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/esotericsoftware/minlog/minlog/1.2/minlog-1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/com/esotericsoftware/minlog/minlog/1.2/minlog-1.2.pom (2 KB at 6.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/1.2/objenesis-1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/1.2/objenesis-1.2.pom (3 KB at 12.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/1.2/objenesis-parent-1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/1.2/objenesis-parent-1.2.pom (11 KB at 40.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-client/2.2.0/hadoop-client-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-client/2.2.0/hadoop-client-2.2.0.pom (11 KB at 42.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/2.2.0/hadoop-project-dist-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/2.2.0/hadoop-project-dist-2.2.0.pom (18 KB at 58.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/2.2.0/hadoop-project-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/2.2.0/hadoop-project-2.2.0.pom (37 KB at 121.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/2.2.0/hadoop-main-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/2.2.0/hadoop-main-2.2.0.pom (17 KB at 46.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/2.2.0/hadoop-common-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/2.2.0/hadoop-common-2.2.0.pom (27 KB at 98.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/2.2.0/hadoop-annotations-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/2.2.0/hadoop-annotations-2.2.0.pom (3 KB at 9.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math/2.1/commons-math-2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math/2.1/commons-math-2.1.pom (11 KB at 36.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/14/commons-parent-14.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/14/commons-parent-14.pom (31 KB at 113.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/xmlenc/xmlenc/0.52/xmlenc-0.52.pom
Downloaded: https://repo.maven.apache.org/maven2/xmlenc/xmlenc/0.52/xmlenc-0.52.pom (623 B at 2.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom (8 KB at 30.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom (4 KB at 10.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.4/commons-codec-1.4.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.4/commons-codec-1.4.pom (11 KB at 34.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.1/commons-io-2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.1/commons-io-2.1.pom (11 KB at 39.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.1/commons-net-3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.1/commons-net-3.1.pom (18 KB at 63.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/23/commons-parent-23.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/23/commons-parent-23.pom (44 KB at 129.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom
Downloaded: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 KB at 75.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.5/commons-lang-2.5.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.5/commons-lang-2.5.pom (17 KB at 53.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/12/commons-parent-12.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/12/commons-parent-12.pom (27 KB at 91.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.6/commons-configuration-1.6.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.6/commons-configuration-1.6.pom (14 KB at 49.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 KB at 43.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 KB at 49.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 KB at 50.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7 KB at 27.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom (357 B at 1.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils-core/1.8.0/commons-beanutils-core-1.8.0.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils-core/1.8.0/commons-beanutils-core-1.8.0.pom (2 KB at 6.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom (3 KB at 10.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom (12 KB at 45.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.5/slf4j-log4j12-1.7.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.5/slf4j-log4j12-1.7.5.pom (2 KB at 6.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.8.8/jackson-core-asl-1.8.8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.8.8/jackson-core-asl-1.8.8.pom (1016 B at 4.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.4/avro-1.7.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.4/avro-1.7.4.pom (5 KB at 16.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.4/avro-parent-1.7.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.4/avro-parent-1.7.4.pom (16 KB at 55.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.4/avro-toplevel-1.7.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.4/avro-toplevel-1.7.4.pom (10 KB at 37.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.4.1/snappy-java-1.0.4.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.4.1/snappy-java-1.0.4.1.pom (10 KB at 36.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom (9 KB at 30.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom (2 KB at 6.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/2.2.0/hadoop-auth-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/2.2.0/hadoop-auth-2.2.0.pom (7 KB at 26.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.5/zookeeper-3.4.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.5/zookeeper-3.4.5.pom (3 KB at 12.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom (3 KB at 12.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom (10 KB at 36.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.6.1/slf4j-log4j12-1.6.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.6.1/slf4j-log4j12-1.6.1.pom (2 KB at 6.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.16/log4j-1.2.16.pom
Downloaded: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.16/log4j-1.2.16.pom (20 KB at 69.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.15/log4j-1.2.15.pom
Downloaded: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.15/log4j-1.2.15.pom (18 KB at 67.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/mail/mail/1.4/mail-1.4.pom
Downloaded: https://repo.maven.apache.org/maven2/javax/mail/mail/1.4/mail-1.4.pom (993 B at 4.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom (2 KB at 4.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/jms/jms/1.1/jms-1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/javax/jms/jms/1.1/jms-1.1.pom (677 B at 2.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-hdfs/2.2.0/hadoop-hdfs-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-hdfs/2.2.0/hadoop-hdfs-2.2.0.pom (24 KB at 83.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-util/6.1.26/jetty-util-6.1.26.pom
Downloaded: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-util/6.1.26/jetty-util-6.1.26.pom (4 KB at 15.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/mortbay/jetty/project/6.1.26/project-6.1.26.pom
Downloaded: https://repo.maven.apache.org/maven2/org/mortbay/jetty/project/6.1.26/project-6.1.26.pom (9 KB at 36.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom (4 KB at 13.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom (17 KB at 62.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-app/2.2.0/hadoop-mapreduce-client-app-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-app/2.2.0/hadoop-mapreduce-client-app-2.2.0.pom (5 KB at 16.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client/2.2.0/hadoop-mapreduce-client-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client/2.2.0/hadoop-mapreduce-client-2.2.0.pom (7 KB at 24.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-common/2.2.0/hadoop-mapreduce-client-common-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-common/2.2.0/hadoop-mapreduce-client-common-2.2.0.pom (4 KB at 12.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-common/2.2.0/hadoop-yarn-common-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-common/2.2.0/hadoop-yarn-common-2.2.0.pom (5 KB at 20.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn/2.2.0/hadoop-yarn-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn/2.2.0/hadoop-yarn-2.2.0.pom (7 KB at 25.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-api/2.2.0/hadoop-yarn-api-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-api/2.2.0/hadoop-yarn-api-2.2.0.pom (3 KB at 11.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/inject/guice/3.0/guice-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/inject/guice/3.0/guice-3.0.pom (8 KB at 28.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/3.0/guice-parent-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/3.0/guice-parent-3.0.pom (13 KB at 50.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (3 KB at 9.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 1.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-test-framework/jersey-test-framework-grizzly2/1.9/jersey-test-framework-grizzly2-1.9.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-test-framework/jersey-test-framework-grizzly2/1.9/jersey-test-framework-grizzly2-1.9.pom (7 KB at 24.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-test-framework/1.9/jersey-test-framework-1.9.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-test-framework/1.9/jersey-test-framework-1.9.pom (3 KB at 12.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.9/jersey-project-1.9.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.9/jersey-project-1.9.pom (18 KB at 67.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1.pom
Downloaded: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1.pom (5 KB at 18.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-test-framework/jersey-test-framework-core/1.9/jersey-test-framework-core-1.9.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-test-framework/jersey-test-framework-core/1.9/jersey-test-framework-core-1.9.pom (7 KB at 25.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.pom
Downloaded: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.pom (13 KB at 48.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.9/jersey-server-1.9.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.9/jersey-server-1.9.pom (12 KB at 44.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.9/jersey-core-1.9.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.9/jersey-core-1.9.pom (11 KB at 39.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.9/jersey-client-1.9.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.9/jersey-client-1.9.pom (7 KB at 23.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-grizzly2/1.9/jersey-grizzly2-1.9.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-grizzly2/1.9/jersey-grizzly2-1.9.pom (6 KB at 22.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-http/2.1.2/grizzly-http-2.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-http/2.1.2/grizzly-http-2.1.2.pom (5 KB at 16.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-project/2.1.2/grizzly-project-2.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-project/2.1.2/grizzly-project-2.1.2.pom (17 KB at 63.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-framework/2.1.2/grizzly-framework-2.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-framework/2.1.2/grizzly-framework-2.1.2.pom (7 KB at 16.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/gmbal/gmbal-api-only/3.0.0-b023/gmbal-api-only-3.0.0-b023.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/gmbal/gmbal-api-only/3.0.0-b023/gmbal-api-only-3.0.0-b023.pom (6 KB at 18.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/external/management-api/3.0.0-b012/management-api-3.0.0-b012.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/external/management-api/3.0.0-b012/management-api-3.0.0-b012.pom (3 KB at 10.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-http-server/2.1.2/grizzly-http-server-2.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-http-server/2.1.2/grizzly-http-server-2.1.2.pom (5 KB at 18.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-rcm/2.1.2/grizzly-rcm-2.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-rcm/2.1.2/grizzly-rcm-2.1.2.pom (4 KB at 14.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-http-servlet/2.1.2/grizzly-http-servlet-2.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-http-servlet/2.1.2/grizzly-http-servlet-2.1.2.pom (7 KB at 26.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/javax.servlet/3.1/javax.servlet-3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/javax.servlet/3.1/javax.servlet-3.1.pom (5 KB at 20.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/api-pom/3.1/api-pom-3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/api-pom/3.1/api-pom-3.1.pom (5 KB at 19.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/glassfish-parent/3.1/glassfish-parent-3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/glassfish-parent/3.1/glassfish-parent-3.1.pom (59 KB at 163.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.9/jersey-json-1.9.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.9/jersey-json-1.9.pom (11 KB at 37.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom (4 KB at 13.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/stax/stax-api/1.0.1/stax-api-1.0.1.pom
Downloaded: https://repo.maven.apache.org/maven2/stax/stax-api/1.0.1/stax-api-1.0.1.pom (2 KB at 6.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom (6 KB at 18.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom
Downloaded: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom (6 KB at 21.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.8.3/jackson-core-asl-1.8.3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.8.3/jackson-core-asl-1.8.3.pom (1016 B at 3.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.8.3/jackson-jaxrs-1.8.3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.8.3/jackson-jaxrs-1.8.3.pom (2 KB at 6.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.8.3/jackson-xc-1.8.3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.8.3/jackson-xc-1.8.3.pom (2 KB at 6.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-guice/1.9/jersey-guice-1.9.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-guice/1.9/jersey-guice-1.9.pom (8 KB at 29.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-contribs/1.9/jersey-contribs-1.9.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-contribs/1.9/jersey-contribs-1.9.pom (5 KB at 15.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-client/2.2.0/hadoop-yarn-client-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-client/2.2.0/hadoop-yarn-client-2.2.0.pom (2 KB at 7.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-core/2.2.0/hadoop-mapreduce-client-core-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-core/2.2.0/hadoop-mapreduce-client-core-2.2.0.pom (4 KB at 12.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-common/2.2.0/hadoop-yarn-server-common-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-common/2.2.0/hadoop-yarn-server-common-2.2.0.pom (4 KB at 13.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server/2.2.0/hadoop-yarn-server-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server/2.2.0/hadoop-yarn-server-2.2.0.pom (2 KB at 7.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-shuffle/2.2.0/hadoop-mapreduce-client-shuffle-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-shuffle/2.2.0/hadoop-mapreduce-client-shuffle-2.2.0.pom (2 KB at 6.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-jobclient/2.2.0/hadoop-mapreduce-client-jobclient-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-jobclient/2.2.0/hadoop-mapreduce-client-jobclient-2.2.0.pom (6 KB at 21.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/jline/jline/0.9.94/jline-0.9.94.pom
Downloaded: https://repo.maven.apache.org/maven2/jline/jline/0.9.94/jline-0.9.94.pom (7 KB at 25.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-nodemanager/2.2.0/hadoop-yarn-server-nodemanager-2.2.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-nodemanager/2.2.0/hadoop-yarn-server-nodemanager-2.2.0.pom (8 KB at 26.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-launcher_2.11/1.5.2/spark-launcher_2.11-1.5.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-launcher_2.11/1.5.2/spark-launcher_2.11-1.5.2.pom (6 KB at 20.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/spark-project/spark/unused/1.0.0/unused-1.0.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/spark-project/spark/unused/1.0.0/unused-1.0.0.pom (3 KB at 9.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-common_2.11/1.5.2/spark-network-common_2.11-1.5.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-common_2.11/1.5.2/spark-network-common_2.11-1.5.2.pom (4 KB at 15.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/netty/netty-all/4.0.29.Final/netty-all-4.0.29.Final.pom
Downloaded: https://repo.maven.apache.org/maven2/io/netty/netty-all/4.0.29.Final/netty-all-4.0.29.Final.pom (18 KB at 66.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.0.29.Final/netty-parent-4.0.29.Final.pom
Downloaded: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.0.29.Final/netty-parent-4.0.29.Final.pom (50 KB at 149.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-shuffle_2.11/1.5.2/spark-network-shuffle_2.11-1.5.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-shuffle_2.11/1.5.2/spark-network-shuffle_2.11-1.5.2.pom (4 KB at 15.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-unsafe_2.11/1.5.2/spark-unsafe_2.11-1.5.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-unsafe_2.11/1.5.2/spark-unsafe_2.11-1.5.2.pom (5 KB at 19.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/java/dev/jets3t/jets3t/0.7.1/jets3t-0.7.1.pom
Downloaded: https://repo.maven.apache.org/maven2/net/java/dev/jets3t/jets3t/0.7.1/jets3t-0.7.1.pom (2 KB at 6.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.3/commons-codec-1.3.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.3/commons-codec-1.3.pom (6 KB at 24.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.4.0/curator-recipes-2.4.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.4.0/curator-recipes-2.4.0.pom (3 KB at 9.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.4.0/apache-curator-2.4.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.4.0/apache-curator-2.4.0.pom (21 KB at 76.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.4.0/curator-framework-2.4.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.4.0/curator-framework-2.4.0.pom (3 KB at 8.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.4.0/curator-client-2.4.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.4.0/curator-client-2.4.0.pom (3 KB at 8.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava/14.0.1/guava-14.0.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava/14.0.1/guava-14.0.1.pom (6 KB at 21.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/14.0.1/guava-parent-14.0.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/14.0.1/guava-parent-14.0.1.pom (3 KB at 10.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/orbit/javax.servlet/3.0.0.v201112011016/javax.servlet-3.0.0.v201112011016.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/orbit/javax.servlet/3.0.0.v201112011016/javax.servlet-3.0.0.v201112011016.pom (732 B at 3.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/orbit/jetty-orbit/1/jetty-orbit-1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/orbit/jetty-orbit/1/jetty-orbit-1.pom (3 KB at 9.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.10/slf4j-log4j12-1.7.10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.10/slf4j-log4j12-1.7.10.pom (2 KB at 6.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/ning/compress-lzf/1.0.3/compress-lzf-1.0.3.pom
Downloaded: https://repo.maven.apache.org/maven2/com/ning/compress-lzf/1.0.3/compress-lzf-1.0.3.pom (8 KB at 30.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.1.7/snappy-java-1.1.1.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.1.7/snappy-java-1.1.1.7.pom (4 KB at 13.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/jpountz/lz4/lz4/1.3.0/lz4-1.3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/net/jpountz/lz4/lz4/1.3.0/lz4-1.3.0.pom (2 KB at 7.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/roaringbitmap/RoaringBitmap/0.4.5/RoaringBitmap-0.4.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/roaringbitmap/RoaringBitmap/0.4.5/RoaringBitmap-0.4.5.pom (8 KB at 27.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/5/oss-parent-5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/5/oss-parent-5.pom (4 KB at 16.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-net/commons-net/2.2/commons-net-2.2.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-net/commons-net/2.2/commons-net-2.2.pom (13 KB at 48.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-remote_2.11/2.3.11/akka-remote_2.11-2.3.11.pom
Downloaded: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-remote_2.11/2.3.11/akka-remote_2.11-2.3.11.pom (4 KB at 14.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.5/scala-library-2.11.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.5/scala-library-2.11.5.pom (2 KB at 5.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.11/2.3.11/akka-actor_2.11-2.3.11.pom
Downloaded: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.11/2.3.11/akka-actor_2.11-2.3.11.pom (2 KB at 7.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/typesafe/config/1.2.1/config-1.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/typesafe/config/1.2.1/config-1.2.1.pom (2 KB at 7.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/netty/netty/3.8.0.Final/netty-3.8.0.Final.pom
Downloaded: https://repo.maven.apache.org/maven2/io/netty/netty/3.8.0.Final/netty-3.8.0.Final.pom (26 KB at 84.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/uncommons/maths/uncommons-maths/1.2.2a/uncommons-maths-1.2.2a.pom
Downloaded: https://repo.maven.apache.org/maven2/org/uncommons/maths/uncommons-maths/1.2.2a/uncommons-maths-1.2.2a.pom (2 KB at 6.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.11/2.3.11/akka-slf4j_2.11-2.3.11.pom
Downloaded: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.11/2.3.11/akka-slf4j_2.11-2.3.11.pom (3 KB at 10.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.7/scala-library-2.11.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.7/scala-library-2.11.7.pom (2 KB at 5.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/json4s/json4s-jackson_2.11/3.2.10/json4s-jackson_2.11-3.2.10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/json4s/json4s-jackson_2.11/3.2.10/json4s-jackson_2.11-3.2.10.pom (3 KB at 9.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.0/scala-library-2.11.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.0/scala-library-2.11.0.pom (2 KB at 5.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/json4s/json4s-core_2.11/3.2.10/json4s-core_2.11-3.2.10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/json4s/json4s-core_2.11/3.2.10/json4s-core_2.11-3.2.10.pom (3 KB at 10.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/json4s/json4s-ast_2.11/3.2.10/json4s-ast_2.11-3.2.10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/json4s/json4s-ast_2.11/3.2.10/json4s-ast_2.11-3.2.10.pom (2 KB at 8.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.6/paranamer-2.6.pom
Downloaded: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.6/paranamer-2.6.pom (5 KB at 18.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.6/paranamer-parent-2.6.pom
Downloaded: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.6/paranamer-parent-2.6.pom (11 KB at 44.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.11.0/scalap-2.11.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.11.0/scalap-2.11.0.pom (2 KB at 5.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.11.0/scala-compiler-2.11.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.11.0/scala-compiler-2.11.0.pom (3 KB at 9.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.0/scala-reflect-2.11.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.0/scala-reflect-2.11.0.pom (2 KB at 6.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.pom (3 KB at 10.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1.pom (3 KB at 8.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.3.1/jackson-databind-2.3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.3.1/jackson-databind-2.3.1.pom (6 KB at 22.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/12/oss-parent-12.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/12/oss-parent-12.pom (23 KB at 77.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.3.0/jackson-annotations-2.3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.3.0/jackson-annotations-2.3.0.pom (2 KB at 5.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/11/oss-parent-11.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/11/oss-parent-11.pom (23 KB at 85.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.3.1/jackson-core-2.3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.3.1/jackson-core-2.3.1.pom (6 KB at 21.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/asm/asm/3.1/asm-3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/asm/asm/3.1/asm-3.1.pom (278 B at 1.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/asm/asm-parent/3.1/asm-parent-3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/asm/asm-parent/3.1/asm-parent-3.1.pom (5 KB at 16.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/mesos/mesos/0.21.1/mesos-0.21.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/mesos/mesos/0.21.1/mesos-0.21.1.pom (8 KB at 29.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/clearspring/analytics/stream/2.7.0/stream-2.7.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/clearspring/analytics/stream/2.7.0/stream-2.7.0.pom (7 KB at 25.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.2/metrics-core-3.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.2/metrics-core-3.1.2.pom (846 B at 3.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.1.2/metrics-parent-3.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.1.2/metrics-parent-3.1.2.pom (12 KB at 46.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.2/metrics-jvm-3.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.2/metrics-jvm-3.1.2.pom (967 B at 3.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.2/metrics-json-3.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.2/metrics-json-3.1.2.pom (2 KB at 5.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.4.2/jackson-databind-2.4.2.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.4.2/jackson-databind-2.4.2.pom (6 KB at 22.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.4.2/jackson-core-2.4.2.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.4.2/jackson-core-2.4.2.pom (5 KB at 19.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-graphite/3.1.2/metrics-graphite-3.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-graphite/3.1.2/metrics-graphite-3.1.2.pom (2 KB at 5.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.11/2.4.4/jackson-module-scala_2.11-2.4.4.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.11/2.4.4/jackson-module-scala_2.11-2.4.4.pom (5 KB at 17.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.2/scala-reflect-2.11.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.2/scala-reflect-2.11.2.pom (2 KB at 6.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.4.4/jackson-annotations-2.4.4.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.4.4/jackson-annotations-2.4.4.pom (2 KB at 4.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.4.0/ivy-2.4.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.4.0/ivy-2.4.0.pom (7 KB at 24.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom
Downloaded: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 0.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-client/0.7.1/tachyon-client-0.7.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-client/0.7.1/tachyon-client-0.7.1.pom (8 KB at 26.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-clients/0.7.1/tachyon-clients-0.7.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-clients/0.7.1/tachyon-clients-0.7.1.pom (918 B at 3.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-parent/0.7.1/tachyon-parent-0.7.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-parent/0.7.1/tachyon-parent-0.7.1.pom (17 KB at 64.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.0/commons-lang3-3.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.0/commons-lang3-3.0.pom (18 KB at 67.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/21/commons-parent-21.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/21/commons-parent-21.pom (34 KB at 101.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.1.0-incubating/curator-framework-2.1.0-incubating.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.1.0-incubating/curator-framework-2.1.0-incubating.pom (3 KB at 10.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.1.0-incubating/apache-curator-2.1.0-incubating.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.1.0-incubating/apache-curator-2.1.0-incubating.pom (18 KB at 69.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.1.0-incubating/curator-client-2.1.0-incubating.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.1.0-incubating/curator-client-2.1.0-incubating.pom (2 KB at 8.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jboss/netty/netty/3.2.2.Final/netty-3.2.2.Final.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jboss/netty/netty/3.2.2.Final/netty-3.2.2.Final.pom (24 KB at 88.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/5/jboss-parent-5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/5/jboss-parent-5.pom (19 KB at 70.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.2/slf4j-api-1.7.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.2/slf4j-api-1.7.2.pom (3 KB at 10.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.2/slf4j-parent-1.7.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.2/slf4j-parent-1.7.2.pom (12 KB at 45.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-hdfs/0.7.1/tachyon-underfs-hdfs-0.7.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-hdfs/0.7.1/tachyon-underfs-hdfs-0.7.1.pom (2 KB at 6.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs/0.7.1/tachyon-underfs-0.7.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs/0.7.1/tachyon-underfs-0.7.1.pom (2 KB at 4.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-local/0.7.1/tachyon-underfs-local-0.7.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-local/0.7.1/tachyon-underfs-local-0.7.1.pom (2 KB at 7.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/razorvine/pyrolite/4.4/pyrolite-4.4.pom
Downloaded: https://repo.maven.apache.org/maven2/net/razorvine/pyrolite/4.4/pyrolite-4.4.pom (4 KB at 13.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/sf/py4j/py4j/0.8.2.1/py4j-0.8.2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/net/sf/py4j/py4j/0.8.2.1/py4j-0.8.2.1.pom (2 KB at 7.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-streaming_2.11/1.5.2/spark-streaming_2.11-1.5.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-streaming_2.11/1.5.2/spark-streaming_2.11-1.5.2.pom (8 KB at 29.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-sql_2.11/1.5.2/spark-sql_2.11-1.5.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-sql_2.11/1.5.2/spark-sql_2.11-1.5.2.pom (7 KB at 25.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-catalyst_2.11/1.5.2/spark-catalyst_2.11-1.5.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-catalyst_2.11/1.5.2/spark-catalyst_2.11-1.5.2.pom (6 KB at 20.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.7/scala-reflect-2.11.7.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.7/scala-reflect-2.11.7.pom (2 KB at 6.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino/2.7.8/janino-2.7.8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino/2.7.8/janino-2.7.8.pom (925 B at 3.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino-parent/2.7.8/janino-parent-2.7.8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino-parent/2.7.8/janino-parent-2.7.8.pom (9 KB at 32.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/janino/commons-compiler/2.7.8/commons-compiler-2.7.8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/janino/commons-compiler/2.7.8/commons-compiler-2.7.8.pom (666 B at 2.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-column/1.7.0/parquet-column-1.7.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-column/1.7.0/parquet-column-1.7.0.pom (5 KB at 18.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet/1.7.0/parquet-1.7.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet/1.7.0/parquet-1.7.0.pom (16 KB at 56.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom (16 KB at 51.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-common/1.7.0/parquet-common-1.7.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-common/1.7.0/parquet-common-1.7.0.pom (2 KB at 6.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-encoding/1.7.0/parquet-encoding-1.7.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-encoding/1.7.0/parquet-encoding-1.7.0.pom (3 KB at 11.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-generator/1.7.0/parquet-generator-1.7.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-generator/1.7.0/parquet-generator-1.7.0.pom (2 KB at 7.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.5/commons-codec-1.5.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.5/commons-codec-1.5.pom (10 KB at 40.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/20/commons-parent-20.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/20/commons-parent-20.pom (33 KB at 106.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-hadoop/1.7.0/parquet-hadoop-1.7.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-hadoop/1.7.0/parquet-hadoop-1.7.0.pom (4 KB at 13.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-format/2.3.0-incubating/parquet-format-2.3.0-incubating.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-format/2.3.0-incubating/parquet-format-2.3.0-incubating.pom (7 KB at 27.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-jackson/1.7.0/parquet-jackson-1.7.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-jackson/1.7.0/parquet-jackson-1.7.0.pom (4 KB at 13.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.11/jackson-mapper-asl-1.9.11.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.11/jackson-mapper-asl-1.9.11.pom (2 KB at 5.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.11/jackson-core-asl-1.9.11.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.11/jackson-core-asl-1.9.11.pom (1017 B at 4.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.1.6/snappy-java-1.1.1.6.pom
Downloaded: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.1.6/snappy-java-1.1.1.6.pom (4 KB at 13.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-graphx_2.11/1.5.2/spark-graphx_2.11-1.5.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-graphx_2.11/1.5.2/spark-graphx_2.11-1.5.2.pom (5 KB at 18.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/github/fommil/netlib/core/1.1.2/core-1.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/com/github/fommil/netlib/core/1.1.2/core-1.1.2.pom (6 KB at 20.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/github/fommil/netlib/parent/1.1/parent-1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/com/github/fommil/netlib/parent/1.1/parent-1.1.pom (10 KB at 37.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/sourceforge/f2j/arpack_combined_all/0.1/arpack_combined_all-0.1.pom
Downloaded: https://repo.maven.apache.org/maven2/net/sourceforge/f2j/arpack_combined_all/0.1/arpack_combined_all-0.1.pom (2 KB at 5.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scalanlp/breeze_2.11/0.11.2/breeze_2.11-0.11.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scalanlp/breeze_2.11/0.11.2/breeze_2.11-0.11.2.pom (5 KB at 16.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.4/scala-library-2.11.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.4/scala-library-2.11.4.pom (2 KB at 5.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scalanlp/breeze-macros_2.11/0.11.2/breeze-macros_2.11-0.11.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scalanlp/breeze-macros_2.11/0.11.2/breeze-macros_2.11-0.11.2.pom (3 KB at 8.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.4/scala-reflect-2.11.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.4/scala-reflect-2.11.4.pom (2 KB at 6.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/sf/opencsv/opencsv/2.3/opencsv-2.3.pom
Downloaded: https://repo.maven.apache.org/maven2/net/sf/opencsv/opencsv/2.3/opencsv-2.3.pom (6 KB at 21.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/github/rwl/jtransforms/2.4.0/jtransforms-2.4.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/github/rwl/jtransforms/2.4.0/jtransforms-2.4.0.pom (3 KB at 10.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/spire-math/spire_2.11/0.7.4/spire_2.11-0.7.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/spire-math/spire_2.11/0.7.4/spire_2.11-0.7.4.pom (3 KB at 9.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/spire-math/spire-macros_2.11/0.7.4/spire-macros_2.11-0.7.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/spire-math/spire-macros_2.11/0.7.4/spire-macros_2.11-0.7.4.pom (3 KB at 8.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jpmml/pmml-model/1.1.15/pmml-model-1.1.15.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jpmml/pmml-model/1.1.15/pmml-model-1.1.15.pom (5 KB at 17.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jpmml/jpmml-model/1.1.15/jpmml-model-1.1.15.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jpmml/jpmml-model/1.1.15/jpmml-model-1.1.15.pom (5 KB at 18.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jpmml/pmml-agent/1.1.15/pmml-agent-1.1.15.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jpmml/pmml-agent/1.1.15/pmml-agent-1.1.15.pom (2 KB at 8.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jpmml/pmml-schema/1.1.15/pmml-schema-1.1.15.pom
Downloaded: https://repo.maven.apache.org/maven2/org/jpmml/pmml-schema/1.1.15/pmml-schema-1.1.15.pom (771 B at 3.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.7/jaxb-impl-2.2.7.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.7/jaxb-impl-2.2.7.pom (5 KB at 18.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-core/2.2.7/jaxb-core-2.2.7.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-core/2.2.7/jaxb-core-2.2.7.pom (5 KB at 16.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.7/jaxb-api-2.2.7.pom
Downloaded: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.7/jaxb-api-2.2.7.pom (8 KB at 31.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/datavec/datavec-spark_2.11/0.6.0/datavec-spark_2.11-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/datavec/datavec-spark_2.11/0.6.0/datavec-spark_2.11-0.6.0.pom (3 KB at 9.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-core_2.11/1.5.1/spark-core_2.11-1.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-core_2.11/1.5.1/spark-core_2.11-1.5.1.pom (20 KB at 64.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-parent_2.11/1.5.1/spark-parent_2.11-1.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-parent_2.11/1.5.1/spark-parent_2.11-1.5.1.pom (85 KB at 206.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-launcher_2.11/1.5.1/spark-launcher_2.11-1.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-launcher_2.11/1.5.1/spark-launcher_2.11-1.5.1.pom (6 KB at 20.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-common_2.11/1.5.1/spark-network-common_2.11-1.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-common_2.11/1.5.1/spark-network-common_2.11-1.5.1.pom (4 KB at 16.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-shuffle_2.11/1.5.1/spark-network-shuffle_2.11-1.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-shuffle_2.11/1.5.1/spark-network-shuffle_2.11-1.5.1.pom (4 KB at 14.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-unsafe_2.11/1.5.1/spark-unsafe_2.11-1.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-unsafe_2.11/1.5.1/spark-unsafe_2.11-1.5.1.pom (5 KB at 19.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-core_2.11/1.6.0/spark-core_2.11-1.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-core_2.11/1.6.0/spark-core_2.11-1.6.0.pom (20 KB at 75.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-parent_2.11/1.6.0/spark-parent_2.11-1.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-parent_2.11/1.6.0/spark-parent_2.11-1.6.0.pom (88 KB at 210.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-asm5-shaded/4.4/xbean-asm5-shaded-4.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-asm5-shaded/4.4/xbean-asm5-shaded-4.4.pom (4 KB at 13.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/4.4/xbean-4.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/4.4/xbean-4.4.pom (18 KB at 67.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.1/genesis-java5-flava-2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.1/genesis-java5-flava-2.1.pom (6 KB at 21.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.1/genesis-default-flava-2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.1/genesis-default-flava-2.1.pom (16 KB at 61.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.1/genesis-2.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.1/genesis-2.1.pom (14 KB at 47.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-launcher_2.11/1.6.0/spark-launcher_2.11-1.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-launcher_2.11/1.6.0/spark-launcher_2.11-1.6.0.pom (6 KB at 23.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-common_2.11/1.6.0/spark-network-common_2.11-1.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-common_2.11/1.6.0/spark-network-common_2.11-1.6.0.pom (5 KB at 17.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-shuffle_2.11/1.6.0/spark-network-shuffle_2.11-1.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-shuffle_2.11/1.6.0/spark-network-shuffle_2.11-1.6.0.pom (5 KB at 17.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-all/1.8/leveldbjni-all-1.8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-all/1.8/leveldbjni-all-1.8.pom (8 KB at 28.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-project/1.8/leveldbjni-project-1.8.pom
Downloaded: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-project/1.8/leveldbjni-project-1.8.pom (10 KB at 37.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.9/fusesource-pom-1.9.pom
Downloaded: https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.9/fusesource-pom-1.9.pom (15 KB at 49.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-unsafe_2.11/1.6.0/spark-unsafe_2.11-1.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-unsafe_2.11/1.6.0/spark-unsafe_2.11-1.6.0.pom (5 KB at 20.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.2/snappy-java-1.1.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.2/snappy-java-1.1.2.pom (4 KB at 13.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/roaringbitmap/RoaringBitmap/0.5.11/RoaringBitmap-0.5.11.pom
Downloaded: https://repo.maven.apache.org/maven2/org/roaringbitmap/RoaringBitmap/0.5.11/RoaringBitmap-0.5.11.pom (7 KB at 25.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-client/0.8.2/tachyon-client-0.8.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-client/0.8.2/tachyon-client-0.8.2.pom (7 KB at 27.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-clients/0.8.2/tachyon-clients-0.8.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-clients/0.8.2/tachyon-clients-0.8.2.pom (918 B at 3.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-parent/0.8.2/tachyon-parent-0.8.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-parent/0.8.2/tachyon-parent-0.8.2.pom (18 KB at 61.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-hdfs/0.8.2/tachyon-underfs-hdfs-0.8.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-hdfs/0.8.2/tachyon-underfs-hdfs-0.8.2.pom (2 KB at 6.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs/0.8.2/tachyon-underfs-0.8.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs/0.8.2/tachyon-underfs-0.8.2.pom (2 KB at 4.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-s3/0.8.2/tachyon-underfs-s3-0.8.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-s3/0.8.2/tachyon-underfs-s3-0.8.2.pom (4 KB at 15.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-local/0.8.2/tachyon-underfs-local-0.8.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-local/0.8.2/tachyon-underfs-local-0.8.2.pom (2 KB at 7.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/razorvine/pyrolite/4.9/pyrolite-4.9.pom
Downloaded: https://repo.maven.apache.org/maven2/net/razorvine/pyrolite/4.9/pyrolite-4.9.pom (4 KB at 14.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/sf/py4j/py4j/0.9/py4j-0.9.pom
Downloaded: https://repo.maven.apache.org/maven2/net/sf/py4j/py4j/0.9/py4j-0.9.pom (2 KB at 7.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.27/jcommander-1.27.pom
Downloaded: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.27/jcommander-1.27.pom (8 KB at 28.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/3/oss-parent-3.pom
Downloaded: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/3/oss-parent-3.pom (4 KB at 13.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.19.0-GA/javassist-3.19.0-GA.jar
Downloading: https://repo.maven.apache.org/maven2/org/deeplearning4j/dl4j-spark_2.11/0.6.0/dl4j-spark_2.11-0.6.0.jar
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava/11.0/guava-11.0.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-streaming_2.11/1.5.2/spark-streaming_2.11-1.5.2.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-mllib_2.11/1.5.2/spark-mllib_2.11-1.5.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.19.0-GA/javassist-3.19.0-GA.jar (732 KB at 312.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-sql_2.11/1.5.2/spark-sql_2.11-1.5.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/deeplearning4j/dl4j-spark_2.11/0.6.0/dl4j-spark_2.11-0.6.0.jar (205 KB at 49.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-catalyst_2.11/1.5.2/spark-catalyst_2.11-1.5.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-sql_2.11/1.5.2/spark-sql_2.11-1.5.2.jar (3396 KB at 207.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino/2.7.8/janino-2.7.8.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino/2.7.8/janino-2.7.8.jar (599 KB at 31.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/janino/commons-compiler/2.7.8/commons-compiler-2.7.8.jar
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava/11.0/guava-11.0.jar (1612 KB at 80.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-column/1.7.0/parquet-column-1.7.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-streaming_2.11/1.5.2/spark-streaming_2.11-1.5.2.jar (1780 KB at 79.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-common/1.7.0/parquet-common-1.7.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/janino/commons-compiler/2.7.8/commons-compiler-2.7.8.jar (30 KB at 1.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-encoding/1.7.0/parquet-encoding-1.7.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-encoding/1.7.0/parquet-encoding-1.7.0.jar (279 KB at 9.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-generator/1.7.0/parquet-generator-1.7.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-generator/1.7.0/parquet-generator-1.7.0.jar (21 KB at 0.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-hadoop/1.7.0/parquet-hadoop-1.7.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-common/1.7.0/parquet-common-1.7.0.jar (22 KB at 0.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-format/2.3.0-incubating/parquet-format-2.3.0-incubating.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-hadoop/1.7.0/parquet-hadoop-1.7.0.jar (205 KB at 6.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-jackson/1.7.0/parquet-jackson-1.7.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-format/2.3.0-incubating/parquet-format-2.3.0-incubating.jar (379 KB at 10.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-graphx_2.11/1.5.2/spark-graphx_2.11-1.5.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-column/1.7.0/parquet-column-1.7.0.jar (896 KB at 24.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/github/fommil/netlib/core/1.1.2/core-1.1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-jackson/1.7.0/parquet-jackson-1.7.0.jar (1024 KB at 27.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/sourceforge/f2j/arpack_combined_all/0.1/arpack_combined_all-0.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/github/fommil/netlib/core/1.1.2/core-1.1.2.jar (161 KB at 4.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scalanlp/breeze_2.11/0.11.2/breeze_2.11-0.11.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-mllib_2.11/1.5.2/spark-mllib_2.11-1.5.2.jar (4150 KB at 105.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scalanlp/breeze-macros_2.11/0.11.2/breeze-macros_2.11-0.11.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/scalanlp/breeze-macros_2.11/0.11.2/breeze-macros_2.11-0.11.2.jar (133 KB at 3.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/sf/opencsv/opencsv/2.3/opencsv-2.3.jar
Downloaded: https://repo.maven.apache.org/maven2/net/sf/opencsv/opencsv/2.3/opencsv-2.3.jar (20 KB at 0.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/github/rwl/jtransforms/2.4.0/jtransforms-2.4.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-graphx_2.11/1.5.2/spark-graphx_2.11-1.5.2.jar (648 KB at 14.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/spire-math/spire_2.11/0.7.4/spire_2.11-0.7.4.jar
Downloaded: https://repo.maven.apache.org/maven2/net/sourceforge/f2j/arpack_combined_all/0.1/arpack_combined_all-0.1.jar (1167 KB at 26.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/spire-math/spire-macros_2.11/0.7.4/spire-macros_2.11-0.7.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/spire-math/spire-macros_2.11/0.7.4/spire-macros_2.11-0.7.4.jar (85 KB at 1.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jpmml/pmml-model/1.1.15/pmml-model-1.1.15.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-catalyst_2.11/1.5.2/spark-catalyst_2.11-1.5.2.jar (4550 KB at 91.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jpmml/pmml-agent/1.1.15/pmml-agent-1.1.15.jar
Downloaded: https://repo.maven.apache.org/maven2/org/jpmml/pmml-model/1.1.15/pmml-model-1.1.15.jar (642 KB at 12.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jpmml/pmml-schema/1.1.15/pmml-schema-1.1.15.jar
Downloaded: https://repo.maven.apache.org/maven2/org/jpmml/pmml-agent/1.1.15/pmml-agent-1.1.15.jar (6 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.7/jaxb-impl-2.2.7.jar
Downloaded: https://repo.maven.apache.org/maven2/org/jpmml/pmml-schema/1.1.15/pmml-schema-1.1.15.jar (5 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-core/2.2.7/jaxb-core-2.2.7.jar
Downloaded: https://repo.maven.apache.org/maven2/com/github/rwl/jtransforms/2.4.0/jtransforms-2.4.0.jar (747 KB at 14.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.7/jaxb-api-2.2.7.jar
Downloaded: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.7/jaxb-api-2.2.7.jar (98 KB at 1.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.7/scala-library-2.11.7.jar
Downloaded: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-core/2.2.7/jaxb-core-2.2.7.jar (217 KB at 4.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/datavec/datavec-spark_2.11/0.6.0/datavec-spark_2.11-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/datavec/datavec-spark_2.11/0.6.0/datavec-spark_2.11-0.6.0.jar (120 KB at 2.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-core_2.11/1.6.0/spark-core_2.11-1.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.7/jaxb-impl-2.2.7.jar (899 KB at 15.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/avro/avro-mapred/1.7.7/avro-mapred-1.7.7-hadoop2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/avro/avro-mapred/1.7.7/avro-mapred-1.7.7-hadoop2.jar (177 KB at 2.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/avro/avro-ipc/1.7.7/avro-ipc-1.7.7.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/avro/avro-ipc/1.7.7/avro-ipc-1.7.7.jar (189 KB at 3.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar (427 KB at 6.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/avro/avro-ipc/1.7.7/avro-ipc-1.7.7-tests.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/avro/avro-ipc/1.7.7/avro-ipc-1.7.7-tests.jar (339 KB at 4.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar (227 KB at 2.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar (763 KB at 8.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twitter/chill_2.11/0.5.0/chill_2.11-0.5.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.7/scala-library-2.11.7.jar (5611 KB at 63.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/esotericsoftware/kryo/kryo/2.21/kryo-2.21.jar
Downloaded: https://repo.maven.apache.org/maven2/com/twitter/chill_2.11/0.5.0/chill_2.11-0.5.0.jar (214 KB at 2.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/esotericsoftware/reflectasm/reflectasm/1.07/reflectasm-1.07-shaded.jar
Downloaded: https://repo.maven.apache.org/maven2/com/esotericsoftware/reflectasm/reflectasm/1.07/reflectasm-1.07-shaded.jar (65 KB at 0.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/esotericsoftware/minlog/minlog/1.2/minlog-1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/com/esotericsoftware/minlog/minlog/1.2/minlog-1.2.jar (5 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/1.2/objenesis-1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/com/esotericsoftware/kryo/kryo/2.21/kryo-2.21.jar (355 KB at 3.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twitter/chill-java/0.5.0/chill-java-0.5.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/1.2/objenesis-1.2.jar (36 KB at 0.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-asm5-shaded/4.4/xbean-asm5-shaded-4.4.jar
Downloaded: https://repo.maven.apache.org/maven2/com/twitter/chill-java/0.5.0/chill-java-0.5.0.jar (46 KB at 0.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-client/2.2.0/hadoop-client-2.2.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-client/2.2.0/hadoop-client-2.2.0.jar (3 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/2.2.0/hadoop-common-2.2.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-asm5-shaded/4.4/xbean-asm5-shaded-4.4.jar (142 KB at 1.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar (41 KB at 0.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math/2.1/commons-math-2.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math/2.1/commons-math-2.1.jar (813 KB at 7.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/xmlenc/xmlenc/0.52/xmlenc-0.52.jar
Downloaded: https://repo.maven.apache.org/maven2/xmlenc/xmlenc/0.52/xmlenc-0.52.jar (15 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.6/commons-configuration-1.6.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.6/commons-configuration-1.6.jar (292 KB at 2.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/spire-math/spire_2.11/0.7.4/spire_2.11-0.7.4.jar (7106 KB at 67.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar (141 KB at 1.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar (185 KB at 1.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils-core/1.8.0/commons-beanutils-core-1.8.0.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar (562 KB at 5.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/2.2.0/hadoop-auth-2.2.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/2.2.0/hadoop-auth-2.2.0.jar (49 KB at 0.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-hdfs/2.2.0/hadoop-hdfs-2.2.0.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils-core/1.8.0/commons-beanutils-core-1.8.0.jar (202 KB at 1.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-util/6.1.26/jetty-util-6.1.26.jar
Downloaded: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-util/6.1.26/jetty-util-6.1.26.jar (173 KB at 1.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-app/2.2.0/hadoop-mapreduce-client-app-2.2.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-app/2.2.0/hadoop-mapreduce-client-app-2.2.0.jar (471 KB at 4.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-common/2.2.0/hadoop-mapreduce-client-common-2.2.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/2.2.0/hadoop-common-2.2.0.jar (2672 KB at 22.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-client/2.2.0/hadoop-yarn-client-2.2.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-client/2.2.0/hadoop-yarn-client-2.2.0.jar (93 KB at 0.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/inject/guice/3.0/guice-3.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-common/2.2.0/hadoop-mapreduce-client-common-2.2.0.jar (641 KB at 5.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/google/inject/guice/3.0/guice-3.0.jar (694 KB at 5.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (3 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-test-framework/jersey-test-framework-grizzly2/1.9/jersey-test-framework-grizzly2-1.9.jar
Downloaded: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (5 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-test-framework/jersey-test-framework-core/1.9/jersey-test-framework-core-1.9.jar
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-test-framework/jersey-test-framework-grizzly2/1.9/jersey-test-framework-grizzly2-1.9.jar (13 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-test-framework/jersey-test-framework-core/1.9/jersey-test-framework-core-1.9.jar (28 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.9/jersey-client-1.9.jar
Downloaded: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.jar (84 KB at 0.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-grizzly2/1.9/jersey-grizzly2-1.9.jar
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-grizzly2/1.9/jersey-grizzly2-1.9.jar (18 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-http/2.1.2/grizzly-http-2.1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.9/jersey-client-1.9.jar (128 KB at 1.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-framework/2.1.2/grizzly-framework-2.1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-http/2.1.2/grizzly-http-2.1.2.jar (248 KB at 1.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/gmbal/gmbal-api-only/3.0.0-b023/gmbal-api-only-3.0.0-b023.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/gmbal/gmbal-api-only/3.0.0-b023/gmbal-api-only-3.0.0-b023.jar (22 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/external/management-api/3.0.0-b012/management-api-3.0.0-b012.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/external/management-api/3.0.0-b012/management-api-3.0.0-b012.jar (42 KB at 0.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-http-server/2.1.2/grizzly-http-server-2.1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-framework/2.1.2/grizzly-framework-2.1.2.jar (675 KB at 5.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-rcm/2.1.2/grizzly-rcm-2.1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-rcm/2.1.2/grizzly-rcm-2.1.2.jar (8 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-http-servlet/2.1.2/grizzly-http-servlet-2.1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-http-server/2.1.2/grizzly-http-server-2.1.2.jar (194 KB at 1.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/glassfish/javax.servlet/3.1/javax.servlet-3.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/grizzly/grizzly-http-servlet/2.1.2/grizzly-http-servlet-2.1.2.jar (330 KB at 2.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.9/jersey-json-1.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/glassfish/javax.servlet/3.1/javax.servlet-3.1.jar (82 KB at 0.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.9/jersey-json-1.9.jar (145 KB at 1.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/stax/stax-api/1.0.1/stax-api-1.0.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar (67 KB at 0.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.8.3/jackson-jaxrs-1.8.3.jar
Downloaded: https://repo.maven.apache.org/maven2/stax/stax-api/1.0.1/stax-api-1.0.1.jar (26 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.8.3/jackson-xc-1.8.3.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.8.3/jackson-xc-1.8.3.jar (32 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-guice/1.9/jersey-guice-1.9.jar
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-guice/1.9/jersey-guice-1.9.jar (15 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-common/2.2.0/hadoop-yarn-server-common-2.2.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.8.3/jackson-jaxrs-1.8.3.jar (18 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-shuffle/2.2.0/hadoop-mapreduce-client-shuffle-2.2.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-shuffle/2.2.0/hadoop-mapreduce-client-shuffle-2.2.0.jar (22 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-api/2.2.0/hadoop-yarn-api-2.2.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-common/2.2.0/hadoop-yarn-server-common-2.2.0.jar (172 KB at 1.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-core/2.2.0/hadoop-mapreduce-client-core-2.2.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-core_2.11/1.6.0/spark-core_2.11-1.6.0.jar (11028 KB at 76.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-common/2.2.0/hadoop-yarn-common-2.2.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-api/2.2.0/hadoop-yarn-api-2.2.0.jar (1132 KB at 7.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-jobclient/2.2.0/hadoop-mapreduce-client-jobclient-2.2.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-jobclient/2.2.0/hadoop-mapreduce-client-jobclient-2.2.0.jar (35 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/2.2.0/hadoop-annotations-2.2.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/2.2.0/hadoop-annotations-2.2.0.jar (17 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-launcher_2.11/1.6.0/spark-launcher_2.11-1.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-launcher_2.11/1.6.0/spark-launcher_2.11-1.6.0.jar (64 KB at 0.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-common_2.11/1.6.0/spark-network-common_2.11-1.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-mapreduce-client-core/2.2.0/hadoop-mapreduce-client-core-2.2.0.jar (1421 KB at 9.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-shuffle_2.11/1.6.0/spark-network-shuffle_2.11-1.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-shuffle_2.11/1.6.0/spark-network-shuffle_2.11-1.6.0.jar (54 KB at 0.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-all/1.8/leveldbjni-all-1.8.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-common/2.2.0/hadoop-yarn-common-2.2.0.jar (1272 KB at 8.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-unsafe_2.11/1.6.0/spark-unsafe_2.11-1.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-unsafe_2.11/1.6.0/spark-unsafe_2.11-1.6.0.jar (38 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/java/dev/jets3t/jets3t/0.7.1/jets3t-0.7.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/scalanlp/breeze_2.11/0.11.2/breeze_2.11-0.11.2.jar (13134 KB at 82.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.3/commons-codec-1.3.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.3/commons-codec-1.3.jar (46 KB at 0.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar
Downloaded: https://repo.maven.apache.org/maven2/net/java/dev/jets3t/jets3t/0.7.1/jets3t-0.7.1.jar (369 KB at 2.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.4.0/curator-recipes-2.4.0.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar (298 KB at 1.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.4.0/curator-framework-2.4.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.4.0/curator-recipes-2.4.0.jar (236 KB at 1.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.4.0/curator-client-2.4.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.4.0/curator-client-2.4.0.jar (66 KB at 0.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.5/zookeeper-3.4.5.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.4.0/curator-framework-2.4.0.jar (176 KB at 1.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/jline/jline/0.9.94/jline-0.9.94.jar
Downloaded: https://repo.maven.apache.org/maven2/jline/jline/0.9.94/jline-0.9.94.jar (86 KB at 0.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/eclipse/jetty/orbit/javax.servlet/3.0.0.v201112011016/javax.servlet-3.0.0.v201112011016.jar
Downloaded: https://repo.maven.apache.org/maven2/org/eclipse/jetty/orbit/javax.servlet/3.0.0.v201112011016/javax.servlet-3.0.0.v201112011016.jar (196 KB at 1.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.3.2/commons-lang3-3.3.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.5/zookeeper-3.4.5.jar (762 KB at 4.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.10/slf4j-api-1.7.10.jar
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.10/slf4j-api-1.7.10.jar (32 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.3.2/commons-lang3-3.3.2.jar (404 KB at 2.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.10/slf4j-log4j12-1.7.10.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-common_2.11/1.6.0/spark-network-common_2.11-1.6.0.jar (2297 KB at 13.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/ning/compress-lzf/1.0.3/compress-lzf-1.0.3.jar
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.10/slf4j-log4j12-1.7.10.jar (9 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.2/snappy-java-1.1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/com/ning/compress-lzf/1.0.3/compress-lzf-1.0.3.jar (78 KB at 0.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/jpountz/lz4/lz4/1.3.0/lz4-1.3.0.jar
Downloaded: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar (479 KB at 2.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/roaringbitmap/RoaringBitmap/0.5.11/RoaringBitmap-0.5.11.jar
Downloaded: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-all/1.8/leveldbjni-all-1.8.jar (1022 KB at 5.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-net/commons-net/2.2/commons-net-2.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/roaringbitmap/RoaringBitmap/0.5.11/RoaringBitmap-0.5.11.jar (198 KB at 1.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-remote_2.11/2.3.11/akka-remote_2.11-2.3.11.jar
Downloaded: https://repo.maven.apache.org/maven2/net/jpountz/lz4/lz4/1.3.0/lz4-1.3.0.jar (232 KB at 1.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.11/2.3.11/akka-actor_2.11-2.3.11.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-hdfs/2.2.0/hadoop-hdfs-2.2.0.jar (5120 KB at 29.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/typesafe/config/1.2.1/config-1.2.1.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-net/commons-net/2.2/commons-net-2.2.jar (208 KB at 1.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/netty/netty/3.8.0.Final/netty-3.8.0.Final.jar
Downloaded: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.2/snappy-java-1.1.2.jar (689 KB at 3.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar
Downloaded: https://repo.maven.apache.org/maven2/com/typesafe/config/1.2.1/config-1.2.1.jar (215 KB at 1.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/uncommons/maths/uncommons-maths/1.2.2a/uncommons-maths-1.2.2a.jar
Downloaded: https://repo.maven.apache.org/maven2/org/uncommons/maths/uncommons-maths/1.2.2a/uncommons-maths-1.2.2a.jar (48 KB at 0.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.11/2.3.11/akka-slf4j_2.11-2.3.11.jar
Downloaded: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.11/2.3.11/akka-slf4j_2.11-2.3.11.jar (16 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/json4s/json4s-jackson_2.11/3.2.10/json4s-jackson_2.11-3.2.10.jar
Downloaded: https://repo.maven.apache.org/maven2/org/json4s/json4s-jackson_2.11/3.2.10/json4s-jackson_2.11-3.2.10.jar (41 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/json4s/json4s-core_2.11/3.2.10/json4s-core_2.11-3.2.10.jar
Downloaded: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar (521 KB at 2.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/json4s/json4s-ast_2.11/3.2.10/json4s-ast_2.11-3.2.10.jar
Downloaded: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-remote_2.11/2.3.11/akka-remote_2.11-2.3.11.jar (1307 KB at 7.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.11.0/scalap-2.11.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/json4s/json4s-core_2.11/3.2.10/json4s-core_2.11-3.2.10.jar (564 KB at 3.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.11.0/scala-compiler-2.11.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/json4s/json4s-ast_2.11/3.2.10/json4s-ast_2.11-3.2.10.jar (81 KB at 0.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.11.0/scalap-2.11.0.jar (754 KB at 3.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1.jar
Downloaded: https://repo.maven.apache.org/maven2/io/netty/netty/3.8.0.Final/netty-3.8.0.Final.jar (1202 KB at 6.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.9/jersey-server-1.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar (641 KB at 3.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/asm/asm/3.1/asm-3.1.jar
Downloaded: https://repo.maven.apache.org/maven2/asm/asm/3.1/asm-3.1.jar (43 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.9/jersey-core-1.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1.jar (410 KB at 2.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/mesos/mesos/0.21.1/mesos-0.21.1-shaded-protobuf.jar
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.9/jersey-core-1.9.jar (448 KB at 2.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/netty/netty-all/4.0.29.Final/netty-all-4.0.29.Final.jar
Downloaded: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.11/2.3.11/akka-actor_2.11-2.3.11.jar (2570 KB at 12.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/clearspring/analytics/stream/2.7.0/stream-2.7.0.jar
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.9/jersey-server-1.9.jar (697 KB at 3.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.2/metrics-core-3.1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/com/clearspring/analytics/stream/2.7.0/stream-2.7.0.jar (171 KB at 0.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.2/metrics-jvm-3.1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.2/metrics-jvm-3.1.2.jar (39 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.2/metrics-json-3.1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.2/metrics-core-3.1.2.jar (110 KB at 0.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-graphite/3.1.2/metrics-graphite-3.1.2.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.2/metrics-json-3.1.2.jar (16 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.4.4/jackson-databind-2.4.4.jar
Downloaded: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-graphite/3.1.2/metrics-graphite-3.1.2.jar (21 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.11/2.4.4/jackson-module-scala_2.11-2.4.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/mesos/mesos/0.21.1/mesos-0.21.1-shaded-protobuf.jar (1248 KB at 6.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.2/scala-reflect-2.11.2.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.11/2.4.4/jackson-module-scala_2.11-2.4.4.jar (526 KB at 2.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.6/paranamer-2.6.jar
Downloaded: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.6/paranamer-2.6.jar (33 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.4.0/ivy-2.4.0.jar
Downloaded: https://repo.maven.apache.org/maven2/io/netty/netty-all/4.0.29.Final/netty-all-4.0.29.Final.jar (2007 KB at 9.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar
Downloaded: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (64 KB at 0.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-client/0.8.2/tachyon-client-0.8.2.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.4.4/jackson-databind-2.4.4.jar (1052 KB at 4.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.4.0/ivy-2.4.0.jar (1253 KB at 5.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-hdfs/0.8.2/tachyon-underfs-hdfs-0.8.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-hdfs/0.8.2/tachyon-underfs-hdfs-0.8.2.jar (11 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-s3/0.8.2/tachyon-underfs-s3-0.8.2.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (256 KB at 1.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-local/0.8.2/tachyon-underfs-local-0.8.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-local/0.8.2/tachyon-underfs-local-0.8.2.jar (8 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/razorvine/pyrolite/4.9/pyrolite-4.9.jar
Downloaded: https://repo.maven.apache.org/maven2/net/razorvine/pyrolite/4.9/pyrolite-4.9.jar (92 KB at 0.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/sf/py4j/py4j/0.9/py4j-0.9.jar
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-s3/0.8.2/tachyon-underfs-s3-0.8.2.jar (494 KB at 2.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/spark-project/spark/unused/1.0.0/unused-1.0.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/spark-project/spark/unused/1.0.0/unused-1.0.0.jar (3 KB at 0.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.27/jcommander-1.27.jar
Downloaded: https://repo.maven.apache.org/maven2/net/sf/py4j/py4j/0.9/py4j-0.9.jar (83 KB at 0.4 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.27/jcommander-1.27.jar (55 KB at 0.2 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-client/0.8.2/tachyon-client-0.8.2.jar (2238 KB at 9.6 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.2/scala-reflect-2.11.2.jar (4289 KB at 18.2 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.11.0/scala-compiler-2.11.0.jar (13336 KB at 53.3 KB/sec)
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ dl4j-spark-local ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ dl4j-spark-local ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:compile (default-compile) @ dl4j-spark-local ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 4 source files to /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-local/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ dl4j-spark-local ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-local/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:testCompile (default-testCompile) @ dl4j-spark-local ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ dl4j-spark-local ---
[INFO] No tests to run.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ dl4j-spark-local ---
[INFO] Building jar: /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-local/target/dl4j-spark-local-0.5-SNAPSHOT.jar
[INFO]
[INFO] --- maven-shade-plugin:2.4.3:shade (default) @ dl4j-spark-local ---
[INFO] Including org.nd4j:nd4j-native-platform:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-native:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-native-api:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-buffer:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-common:jar:0.6.0 in the shaded jar.
[INFO] Including org.reflections:reflections:jar:0.9.10 in the shaded jar.
[INFO] Including org.javassist:javassist:jar:3.19.0-GA in the shaded jar.
[INFO] Including com.google.code.findbugs:annotations:jar:2.0.1 in the shaded jar.
[INFO] Including org.bytedeco:javacpp:jar:1.2.4 in the shaded jar.
[INFO] Including org.nd4j:nd4j-api:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-context:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-native:jar:linux-x86_64:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-native:jar:macosx-x86_64:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-native:jar:windows-x86_64:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-native:jar:linux-ppc64le:0.6.0 in the shaded jar.
[INFO] Including org.deeplearning4j:dl4j-spark_2.11:jar:0.6.0 in the shaded jar.
[INFO] Including org.deeplearning4j:deeplearning4j-core:jar:0.6.0 in the shaded jar.
[INFO] Including org.deeplearning4j:deeplearning4j-nn:jar:0.6.0 in the shaded jar.
[INFO] Including commons-io:commons-io:jar:2.4 in the shaded jar.
[INFO] Including org.apache.commons:commons-compress:jar:1.8 in the shaded jar.
[INFO] Including org.tukaani:xz:jar:1.5 in the shaded jar.
[INFO] Including com.google.guava:guava:jar:11.0 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-core:jar:2.5.1 in the shaded jar.
[INFO] Including org.json:json:jar:20131018 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-annotations:jar:2.5.1 in the shaded jar.
[INFO] Including org.projectlombok:lombok:jar:1.16.4 in the shaded jar.
[INFO] Including com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.5.1 in the shaded jar.
[INFO] Including org.yaml:snakeyaml:jar:1.12 in the shaded jar.
[INFO] Including org.datavec:datavec-nd4j-common:jar:0.6.0 in the shaded jar.
[INFO] Including org.datavec:datavec-api:jar:0.6.0 in the shaded jar.
[INFO] Including com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.4.4 in the shaded jar.
[INFO] Including joda-time:joda-time:jar:2.9.2 in the shaded jar.
[INFO] Including org.datavec:datavec-data-image:jar:0.6.0 in the shaded jar.
[INFO] Including com.github.jai-imageio:jai-imageio-core:jar:1.3.0 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-jpeg:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-core:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-metadata:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.common:common-lang:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.common:common-io:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.common:common-image:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-tiff:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-psd:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-bmp:jar:3.1.1 in the shaded jar.
[INFO] Including org.bytedeco:javacv:jar:1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:linux-x86_64:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:macosx-x86_64:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:windows-x86_64:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:linux-ppc64le:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:linux-x86_64:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:macosx-x86_64:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:windows-x86_64:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:linux-ppc64le:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:1.73-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:linux-x86_64:1.73-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:macosx-x86_64:1.73-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:windows-x86_64:1.73-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:linux-ppc64le:1.73-1.2 in the shaded jar.
[INFO] Including org.apache.spark:spark-mllib_2.11:jar:1.5.2 in the shaded jar.
[INFO] Including org.apache.spark:spark-streaming_2.11:jar:1.5.2 in the shaded jar.
[INFO] Including org.apache.spark:spark-sql_2.11:jar:1.5.2 in the shaded jar.
[INFO] Including org.apache.spark:spark-catalyst_2.11:jar:1.5.2 in the shaded jar.
[INFO] Including org.codehaus.janino:janino:jar:2.7.8 in the shaded jar.
[INFO] Including org.codehaus.janino:commons-compiler:jar:2.7.8 in the shaded jar.
[INFO] Including org.apache.parquet:parquet-column:jar:1.7.0 in the shaded jar.
[INFO] Including org.apache.parquet:parquet-common:jar:1.7.0 in the shaded jar.
[INFO] Including org.apache.parquet:parquet-encoding:jar:1.7.0 in the shaded jar.
[INFO] Including org.apache.parquet:parquet-generator:jar:1.7.0 in the shaded jar.
[INFO] Including org.apache.parquet:parquet-hadoop:jar:1.7.0 in the shaded jar.
[INFO] Including org.apache.parquet:parquet-format:jar:2.3.0-incubating in the shaded jar.
[INFO] Including org.apache.parquet:parquet-jackson:jar:1.7.0 in the shaded jar.
[INFO] Including org.apache.spark:spark-graphx_2.11:jar:1.5.2 in the shaded jar.
[INFO] Including com.github.fommil.netlib:core:jar:1.1.2 in the shaded jar.
[INFO] Including net.sourceforge.f2j:arpack_combined_all:jar:0.1 in the shaded jar.
[INFO] Including org.scalanlp:breeze_2.11:jar:0.11.2 in the shaded jar.
[INFO] Including org.scalanlp:breeze-macros_2.11:jar:0.11.2 in the shaded jar.
[INFO] Including net.sf.opencsv:opencsv:jar:2.3 in the shaded jar.
[INFO] Including com.github.rwl:jtransforms:jar:2.4.0 in the shaded jar.
[INFO] Including org.spire-math:spire_2.11:jar:0.7.4 in the shaded jar.
[INFO] Including org.spire-math:spire-macros_2.11:jar:0.7.4 in the shaded jar.
[INFO] Including org.jpmml:pmml-model:jar:1.1.15 in the shaded jar.
[INFO] Including org.jpmml:pmml-agent:jar:1.1.15 in the shaded jar.
[INFO] Including org.jpmml:pmml-schema:jar:1.1.15 in the shaded jar.
[INFO] Including com.sun.xml.bind:jaxb-impl:jar:2.2.7 in the shaded jar.
[INFO] Including com.sun.xml.bind:jaxb-core:jar:2.2.7 in the shaded jar.
[INFO] Including javax.xml.bind:jaxb-api:jar:2.2.7 in the shaded jar.
[INFO] Including org.scala-lang:scala-library:jar:2.11.7 in the shaded jar.
[INFO] Including org.datavec:datavec-spark_2.11:jar:0.6.0 in the shaded jar.
[INFO] Including org.deeplearning4j:deeplearning4j-ui-components:jar:0.6.0 in the shaded jar.
[INFO] Including org.freemarker:freemarker:jar:2.3.23 in the shaded jar.
[INFO] Including org.apache.spark:spark-core_2.11:jar:1.6.0 in the shaded jar.
[INFO] Including org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 in the shaded jar.
[INFO] Including org.apache.avro:avro-ipc:jar:1.7.7 in the shaded jar.
[INFO] Including org.apache.avro:avro:jar:1.7.7 in the shaded jar.
[INFO] Including org.apache.avro:avro-ipc:jar:tests:1.7.7 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-core-asl:jar:1.9.13 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 in the shaded jar.
[INFO] Including com.twitter:chill_2.11:jar:0.5.0 in the shaded jar.
[INFO] Including com.esotericsoftware.kryo:kryo:jar:2.21 in the shaded jar.
[INFO] Including com.esotericsoftware.reflectasm:reflectasm:jar:shaded:1.07 in the shaded jar.
[INFO] Including com.esotericsoftware.minlog:minlog:jar:1.2 in the shaded jar.
[INFO] Including org.objenesis:objenesis:jar:1.2 in the shaded jar.
[INFO] Including com.twitter:chill-java:jar:0.5.0 in the shaded jar.
[INFO] Including org.apache.xbean:xbean-asm5-shaded:jar:4.4 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-client:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-common:jar:2.2.0 in the shaded jar.
[INFO] Including commons-cli:commons-cli:jar:1.2 in the shaded jar.
[INFO] Including org.apache.commons:commons-math:jar:2.1 in the shaded jar.
[INFO] Including xmlenc:xmlenc:jar:0.52 in the shaded jar.
[INFO] Including commons-configuration:commons-configuration:jar:1.6 in the shaded jar.
[INFO] Including commons-collections:commons-collections:jar:3.2.1 in the shaded jar.
[INFO] Including commons-digester:commons-digester:jar:1.8 in the shaded jar.
[INFO] Including commons-beanutils:commons-beanutils:jar:1.7.0 in the shaded jar.
[INFO] Including commons-beanutils:commons-beanutils-core:jar:1.8.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-auth:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-hdfs:jar:2.2.0 in the shaded jar.
[INFO] Including org.mortbay.jetty:jetty-util:jar:6.1.26 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 in the shaded jar.
[INFO] Including com.google.inject:guice:jar:3.0 in the shaded jar.
[INFO] Including javax.inject:javax.inject:jar:1 in the shaded jar.
[INFO] Including aopalliance:aopalliance:jar:1.0 in the shaded jar.
[INFO] Including com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 in the shaded jar.
[INFO] Including com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 in the shaded jar.
[INFO] Including javax.servlet:javax.servlet-api:jar:3.0.1 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-client:jar:1.9 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-grizzly2:jar:1.9 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-http:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-framework:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 in the shaded jar.
[INFO] Including org.glassfish.external:management-api:jar:3.0.0-b012 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish:javax.servlet:jar:3.1 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-json:jar:1.9 in the shaded jar.
[INFO] Including org.codehaus.jettison:jettison:jar:1.1 in the shaded jar.
[INFO] Including stax:stax-api:jar:1.0.1 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-jaxrs:jar:1.8.3 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-xc:jar:1.8.3 in the shaded jar.
[INFO] Including com.sun.jersey.contribs:jersey-guice:jar:1.9 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-annotations:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.spark:spark-launcher_2.11:jar:1.6.0 in the shaded jar.
[INFO] Including org.apache.spark:spark-network-common_2.11:jar:1.6.0 in the shaded jar.
[INFO] Including org.apache.spark:spark-network-shuffle_2.11:jar:1.6.0 in the shaded jar.
[INFO] Including org.fusesource.leveldbjni:leveldbjni-all:jar:1.8 in the shaded jar.
[INFO] Including org.apache.spark:spark-unsafe_2.11:jar:1.6.0 in the shaded jar.
[INFO] Including net.java.dev.jets3t:jets3t:jar:0.7.1 in the shaded jar.
[INFO] Including commons-codec:commons-codec:jar:1.3 in the shaded jar.
[INFO] Including commons-httpclient:commons-httpclient:jar:3.1 in the shaded jar.
[INFO] Including org.apache.curator:curator-recipes:jar:2.4.0 in the shaded jar.
[INFO] Including org.apache.curator:curator-framework:jar:2.4.0 in the shaded jar.
[INFO] Including org.apache.curator:curator-client:jar:2.4.0 in the shaded jar.
[INFO] Including org.apache.zookeeper:zookeeper:jar:3.4.5 in the shaded jar.
[INFO] Including jline:jline:jar:0.9.94 in the shaded jar.
[INFO] Including org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016 in the shaded jar.
[INFO] Including org.apache.commons:commons-lang3:jar:3.3.2 in the shaded jar.
[INFO] Including org.apache.commons:commons-math3:jar:3.4.1 in the shaded jar.
[INFO] Including com.google.code.findbugs:jsr305:jar:1.3.9 in the shaded jar.
[INFO] Including org.slf4j:slf4j-api:jar:1.7.10 in the shaded jar.
[INFO] Including org.slf4j:jul-to-slf4j:jar:1.7.10 in the shaded jar.
[INFO] Including org.slf4j:jcl-over-slf4j:jar:1.7.10 in the shaded jar.
[INFO] Including log4j:log4j:jar:1.2.17 in the shaded jar.
[INFO] Including org.slf4j:slf4j-log4j12:jar:1.7.10 in the shaded jar.
[INFO] Including com.ning:compress-lzf:jar:1.0.3 in the shaded jar.
[INFO] Including org.xerial.snappy:snappy-java:jar:1.1.2 in the shaded jar.
[INFO] Including net.jpountz.lz4:lz4:jar:1.3.0 in the shaded jar.
[INFO] Including org.roaringbitmap:RoaringBitmap:jar:0.5.11 in the shaded jar.
[INFO] Including commons-net:commons-net:jar:2.2 in the shaded jar.
[INFO] Including com.typesafe.akka:akka-remote_2.11:jar:2.3.11 in the shaded jar.
[INFO] Including com.typesafe.akka:akka-actor_2.11:jar:2.3.11 in the shaded jar.
[INFO] Including com.typesafe:config:jar:1.2.1 in the shaded jar.
[INFO] Including io.netty:netty:jar:3.8.0.Final in the shaded jar.
[INFO] Including com.google.protobuf:protobuf-java:jar:2.5.0 in the shaded jar.
[INFO] Including org.uncommons.maths:uncommons-maths:jar:1.2.2a in the shaded jar.
[INFO] Including com.typesafe.akka:akka-slf4j_2.11:jar:2.3.11 in the shaded jar.
[INFO] Including org.json4s:json4s-jackson_2.11:jar:3.2.10 in the shaded jar.
[INFO] Including org.json4s:json4s-core_2.11:jar:3.2.10 in the shaded jar.
[INFO] Including org.json4s:json4s-ast_2.11:jar:3.2.10 in the shaded jar.
[INFO] Including org.scala-lang:scalap:jar:2.11.0 in the shaded jar.
[INFO] Including org.scala-lang:scala-compiler:jar:2.11.0 in the shaded jar.
[INFO] Including org.scala-lang.modules:scala-xml_2.11:jar:1.0.1 in the shaded jar.
[INFO] Including org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.1 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-server:jar:1.9 in the shaded jar.
[INFO] Including asm:asm:jar:3.1 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-core:jar:1.9 in the shaded jar.
[INFO] Including org.apache.mesos:mesos:jar:shaded-protobuf:0.21.1 in the shaded jar.
[INFO] Including io.netty:netty-all:jar:4.0.29.Final in the shaded jar.
[INFO] Including com.clearspring.analytics:stream:jar:2.7.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-core:jar:3.1.2 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-jvm:jar:3.1.2 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-json:jar:3.1.2 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-graphite:jar:3.1.2 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-databind:jar:2.4.4 in the shaded jar.
[INFO] Including com.fasterxml.jackson.module:jackson-module-scala_2.11:jar:2.4.4 in the shaded jar.
[INFO] Including org.scala-lang:scala-reflect:jar:2.11.2 in the shaded jar.
[INFO] Including com.thoughtworks.paranamer:paranamer:jar:2.6 in the shaded jar.
[INFO] Including org.apache.ivy:ivy:jar:2.4.0 in the shaded jar.
[INFO] Including oro:oro:jar:2.0.8 in the shaded jar.
[INFO] Including org.tachyonproject:tachyon-client:jar:0.8.2 in the shaded jar.
[INFO] Including commons-lang:commons-lang:jar:2.4 in the shaded jar.
[INFO] Including org.tachyonproject:tachyon-underfs-hdfs:jar:0.8.2 in the shaded jar.
[INFO] Including org.tachyonproject:tachyon-underfs-s3:jar:0.8.2 in the shaded jar.
[INFO] Including org.tachyonproject:tachyon-underfs-local:jar:0.8.2 in the shaded jar.
[INFO] Including net.razorvine:pyrolite:jar:4.9 in the shaded jar.
[INFO] Including net.sf.py4j:py4j:jar:0.9 in the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Including com.beust:jcommander:jar:1.27 in the shaded jar.
[WARNING] commons-beanutils-1.7.0.jar, commons-beanutils-core-1.8.0.jar define 82 overlapping classes:
[WARNING]   - org.apache.commons.beanutils.ConvertUtilsBean
[WARNING]   - org.apache.commons.beanutils.converters.SqlTimeConverter
[WARNING]   - org.apache.commons.beanutils.Converter
[WARNING]   - org.apache.commons.beanutils.converters.FloatArrayConverter
[WARNING]   - org.apache.commons.beanutils.NestedNullException
[WARNING]   - org.apache.commons.beanutils.ConvertingWrapDynaBean
[WARNING]   - org.apache.commons.beanutils.converters.LongArrayConverter
[WARNING]   - org.apache.commons.beanutils.converters.SqlDateConverter
[WARNING]   - org.apache.commons.beanutils.converters.BooleanArrayConverter
[WARNING]   - org.apache.commons.beanutils.converters.StringConverter
[WARNING]   - 72 more...
[WARNING] guava-11.0.jar, spark-network-common_2.11-1.6.0.jar define 5 overlapping classes:
[WARNING]   - com.google.common.base.Function
[WARNING]   - com.google.common.base.Supplier
[WARNING]   - com.google.common.base.Optional$1$1
[WARNING]   - com.google.common.base.Optional$1
[WARNING]   - com.google.common.base.Optional
[WARNING] annotations-2.0.1.jar, jsr305-1.3.9.jar define 34 overlapping classes:
[WARNING]   - javax.annotation.RegEx
[WARNING]   - javax.annotation.concurrent.Immutable
[WARNING]   - javax.annotation.meta.TypeQualifierDefault
[WARNING]   - javax.annotation.meta.TypeQualifier
[WARNING]   - javax.annotation.Syntax
[WARNING]   - javax.annotation.CheckReturnValue
[WARNING]   - javax.annotation.CheckForNull
[WARNING]   - javax.annotation.Nonnull
[WARNING]   - javax.annotation.meta.TypeQualifierNickname
[WARNING]   - javax.annotation.MatchesPattern
[WARNING]   - 24 more...
[WARNING] javax.servlet-api-3.0.1.jar, javax.servlet-3.1.jar, javax.servlet-3.0.0.v201112011016.jar define 74 overlapping classes:
[WARNING]   - javax.servlet.http.Cookie
[WARNING]   - javax.servlet.ServletContext
[WARNING]   - javax.servlet.Registration
[WARNING]   - javax.servlet.http.HttpSessionListener
[WARNING]   - javax.servlet.http.HttpSessionContext
[WARNING]   - javax.servlet.FilterChain
[WARNING]   - javax.servlet.http.HttpServletRequestWrapper
[WARNING]   - javax.servlet.http.HttpSessionAttributeListener
[WARNING]   - javax.servlet.annotation.HandlesTypes
[WARNING]   - javax.servlet.http.HttpSessionBindingListener
[WARNING]   - 64 more...
[WARNING] spark-network-common_2.11-1.6.0.jar, unused-1.0.0.jar, spark-launcher_2.11-1.6.0.jar, spark-core_2.11-1.6.0.jar, spark-unsafe_2.11-1.6.0.jar, spark-streaming_2.11-1.5.2.jar, spark-graphx_2.11-1.5.2.jar, spark-mllib_2.11-1.5.2.jar, spark-sql_2.11-1.5.2.jar, spark-catalyst_2.11-1.5.2.jar, spark-network-shuffle_2.11-1.6.0.jar define 1 overlapping classes:
[WARNING]   - org.apache.spark.unused.UnusedStubClass
[WARNING] hadoop-yarn-common-2.2.0.jar, hadoop-yarn-api-2.2.0.jar define 3 overlapping classes:
[WARNING]   - org.apache.hadoop.yarn.util.package-info
[WARNING]   - org.apache.hadoop.yarn.factories.package-info
[WARNING]   - org.apache.hadoop.yarn.factory.providers.package-info
[WARNING] reflectasm-1.07-shaded.jar, kryo-2.21.jar define 23 overlapping classes:
[WARNING]   - com.esotericsoftware.reflectasm.AccessClassLoader
[WARNING]   - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.Opcodes
[WARNING]   - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.Label
[WARNING]   - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.ClassWriter
[WARNING]   - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.AnnotationVisitor
[WARNING]   - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.Type
[WARNING]   - com.esotericsoftware.reflectasm.FieldAccess
[WARNING]   - com.esotericsoftware.reflectasm.ConstructorAccess
[WARNING]   - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.Edge
[WARNING]   - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.ClassVisitor
[WARNING]   - 13 more...
[WARNING] commons-collections-3.2.1.jar, commons-beanutils-1.7.0.jar, commons-beanutils-core-1.8.0.jar define 10 overlapping classes:
[WARNING]   - org.apache.commons.collections.FastHashMap$EntrySet
[WARNING]   - org.apache.commons.collections.FastHashMap$KeySet
[WARNING]   - org.apache.commons.collections.ArrayStack
[WARNING]   - org.apache.commons.collections.FastHashMap$CollectionView$CollectionViewIterator
[WARNING]   - org.apache.commons.collections.FastHashMap$Values
[WARNING]   - org.apache.commons.collections.FastHashMap$CollectionView
[WARNING]   - org.apache.commons.collections.FastHashMap$1
[WARNING]   - org.apache.commons.collections.Buffer
[WARNING]   - org.apache.commons.collections.FastHashMap
[WARNING]   - org.apache.commons.collections.BufferUnderflowException
[WARNING] objenesis-1.2.jar, kryo-2.21.jar define 32 overlapping classes:
[WARNING]   - org.objenesis.ObjenesisBase
[WARNING]   - org.objenesis.instantiator.gcj.GCJInstantiator
[WARNING]   - org.objenesis.ObjenesisHelper
[WARNING]   - org.objenesis.instantiator.jrockit.JRockitLegacyInstantiator
[WARNING]   - org.objenesis.instantiator.sun.SunReflectionFactoryInstantiator
[WARNING]   - org.objenesis.instantiator.ObjectInstantiator
[WARNING]   - org.objenesis.instantiator.gcj.GCJInstantiatorBase$DummyStream
[WARNING]   - org.objenesis.instantiator.basic.ObjectStreamClassInstantiator
[WARNING]   - org.objenesis.ObjenesisException
[WARNING]   - org.objenesis.Objenesis
[WARNING]   - 22 more...
[WARNING] minlog-1.2.jar, kryo-2.21.jar define 2 overlapping classes:
[WARNING]   - com.esotericsoftware.minlog.Log
[WARNING]   - com.esotericsoftware.minlog.Log$Logger
[WARNING] maven-shade-plugin has detected that some class files are
[WARNING] present in two or more JARs. When this happens, only one
[WARNING] single version of the class is copied to the uber jar.
[WARNING] Usually this is not harmful and you can skip these warnings,
[WARNING] otherwise try to manually exclude artifacts based on
[WARNING] mvn dependency:tree -Ddetail=true and the above output.
[WARNING] See http://maven.apache.org/plugins/maven-shade-plugin/
[INFO] Attaching shaded artifact.
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ dl4j-spark-local ---
[INFO] Installing /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-local/target/dl4j-spark-local-0.5-SNAPSHOT.jar to /Users/USERNAME/.m2/repository/org/deeplearning4j/dl4j-spark-local/0.5-SNAPSHOT/dl4j-spark-local-0.5-SNAPSHOT.jar
[INFO] Installing /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-local/pom.xml to /Users/USERNAME/.m2/repository/org/deeplearning4j/dl4j-spark-local/0.5-SNAPSHOT/dl4j-spark-local-0.5-SNAPSHOT.pom
[INFO] Installing /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-local/target/dl4j-spark-local-0.5-SNAPSHOT-bin.jar to /Users/USERNAME/.m2/repository/org/deeplearning4j/dl4j-spark-local/0.5-SNAPSHOT/dl4j-spark-local-0.5-SNAPSHOT-bin.jar
[INFO]                                                                      
[INFO] ------------------------------------------------------------------------
[INFO] Building dl4j-spark-cdh 0.5-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.pom (10 KB at 37.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom (11 KB at 35.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.jar (42 KB at 142.7 KB/sec)
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ dl4j-spark-cdh ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ dl4j-spark-cdh ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-cdh/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ dl4j-spark-cdh ---
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom (3 KB at 8.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom (4 KB at 12.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom (865 B at 3.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom (4 KB at 13.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom (3 KB at 11.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.pom (690 B at 2.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.pom (769 B at 2.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.2/plexus-compilers-2.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.2/plexus-compilers-2.2.pom (2 KB at 4.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom (3 KB at 10.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom (4 KB at 15.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom (3 KB at 9.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.4/xbean-3.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.4/xbean-3.4.pom (19 KB at 66.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom
Downloaded: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 0.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom (6 KB at 20.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom (3 KB at 9.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/junit/junit/3.8.2/junit-3.8.2.pom
Downloaded: https://repo.maven.apache.org/maven2/junit/junit/3.8.2/junit-3.8.2.pom (747 B at 2.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.jar
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.jar
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar (25 KB at 68.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.jar (5 KB at 12.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.jar (19 KB at 25.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.jar (151 KB at 146.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.jar (46 KB at 27.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.jar (131 KB at 75.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar (33 KB at 16.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.jar
Downloaded: https://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar (44 KB at 21.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/junit/junit/3.8.2/junit-3.8.2.jar
Downloaded: https://repo.maven.apache.org/maven2/junit/junit/3.8.2/junit-3.8.2.jar (118 KB at 37.8 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.jar (212 KB at 64.1 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.jar (206 KB at 58.0 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.jar (625 KB at 152.0 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.jar (350 KB at 72.0 KB/sec)
[INFO] No sources to compile
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ dl4j-spark-cdh ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-cdh/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ dl4j-spark-cdh ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ dl4j-spark-cdh ---
[INFO] No tests to run.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ dl4j-spark-cdh ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-cdh/target/dl4j-spark-cdh-0.5-SNAPSHOT.jar
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ dl4j-spark-cdh ---
[INFO] Installing /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-cdh/target/dl4j-spark-cdh-0.5-SNAPSHOT.jar to /Users/USERNAME/.m2/repository/org/deeplearning4j/dl4j-spark-cdh/0.5-SNAPSHOT/dl4j-spark-cdh-0.5-SNAPSHOT.jar
[INFO] Installing /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-cdh/pom.xml to /Users/USERNAME/.m2/repository/org/deeplearning4j/dl4j-spark-cdh/0.5-SNAPSHOT/dl4j-spark-cdh-0.5-SNAPSHOT.pom
[INFO]                                                                      
[INFO] ------------------------------------------------------------------------
[INFO] Building dl4j-spark-hdp 0.5-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ dl4j-spark-hdp ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ dl4j-spark-hdp ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-hdp/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ dl4j-spark-hdp ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ dl4j-spark-hdp ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-hdp/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ dl4j-spark-hdp ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ dl4j-spark-hdp ---
[INFO] No tests to run.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ dl4j-spark-hdp ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-hdp/target/dl4j-spark-hdp-0.5-SNAPSHOT.jar
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ dl4j-spark-hdp ---
[INFO] Installing /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-hdp/target/dl4j-spark-hdp-0.5-SNAPSHOT.jar to /Users/USERNAME/.m2/repository/org/deeplearning4j/dl4j-spark-hdp/0.5-SNAPSHOT/dl4j-spark-hdp-0.5-SNAPSHOT.jar
[INFO] Installing /Users/USERNAME/dl4j-examples/dl4j-spark-examples/dl4j-spark-hdp/pom.xml to /Users/USERNAME/.m2/repository/org/deeplearning4j/dl4j-spark-hdp/0.5-SNAPSHOT/dl4j-spark-hdp-0.5-SNAPSHOT.pom
[INFO]                                                                      
[INFO] ------------------------------------------------------------------------
[INFO] Building datavec-examples 0.5-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: https://repo.maven.apache.org/maven2/org/datavec/datavec-spark_2.10/0.6.0/datavec-spark_2.10-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/datavec/datavec-spark_2.10/0.6.0/datavec-spark_2.10-0.6.0.pom (3 KB at 6.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-core_2.10/1.5.1/spark-core_2.10-1.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-core_2.10/1.5.1/spark-core_2.10-1.5.1.pom (20 KB at 74.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-parent_2.10/1.5.1/spark-parent_2.10-1.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-parent_2.10/1.5.1/spark-parent_2.10-1.5.1.pom (85 KB at 129.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twitter/chill_2.10/0.5.0/chill_2.10-0.5.0.pom
Downloaded: https://repo.maven.apache.org/maven2/com/twitter/chill_2.10/0.5.0/chill_2.10-0.5.0.pom (3 KB at 8.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.10.4/scala-library-2.10.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.10.4/scala-library-2.10.4.pom (2 KB at 8.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-launcher_2.10/1.5.1/spark-launcher_2.10-1.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-launcher_2.10/1.5.1/spark-launcher_2.10-1.5.1.pom (5 KB at 20.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-common_2.10/1.5.1/spark-network-common_2.10-1.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-common_2.10/1.5.1/spark-network-common_2.10-1.5.1.pom (4 KB at 15.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-shuffle_2.10/1.5.1/spark-network-shuffle_2.10-1.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-shuffle_2.10/1.5.1/spark-network-shuffle_2.10-1.5.1.pom (4 KB at 14.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-unsafe_2.10/1.5.1/spark-unsafe_2.10-1.5.1.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-unsafe_2.10/1.5.1/spark-unsafe_2.10-1.5.1.pom (5 KB at 18.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-remote_2.10/2.3.11/akka-remote_2.10-2.3.11.pom
Downloaded: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-remote_2.10/2.3.11/akka-remote_2.10-2.3.11.pom (4 KB at 13.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.10/2.3.11/akka-actor_2.10-2.3.11.pom
Downloaded: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.10/2.3.11/akka-actor_2.10-2.3.11.pom (2 KB at 7.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.10/2.3.11/akka-slf4j_2.10-2.3.11.pom
Downloaded: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.10/2.3.11/akka-slf4j_2.10-2.3.11.pom (3 KB at 9.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/json4s/json4s-jackson_2.10/3.2.10/json4s-jackson_2.10-3.2.10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/json4s/json4s-jackson_2.10/3.2.10/json4s-jackson_2.10-3.2.10.pom (3 KB at 9.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.10.0/scala-library-2.10.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.10.0/scala-library-2.10.0.pom (2 KB at 7.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/json4s/json4s-core_2.10/3.2.10/json4s-core_2.10-3.2.10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/json4s/json4s-core_2.10/3.2.10/json4s-core_2.10-3.2.10.pom (3 KB at 10.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/json4s/json4s-ast_2.10/3.2.10/json4s-ast_2.10-3.2.10.pom
Downloaded: https://repo.maven.apache.org/maven2/org/json4s/json4s-ast_2.10/3.2.10/json4s-ast_2.10-3.2.10.pom (2 KB at 7.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.10.0/scalap-2.10.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.10.0/scalap-2.10.0.pom (2 KB at 7.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.10.0/scala-compiler-2.10.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.10.0/scala-compiler-2.10.0.pom (3 KB at 8.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.10.0/scala-reflect-2.10.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.10.0/scala-reflect-2.10.0.pom (2 KB at 7.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.10/2.4.4/jackson-module-scala_2.10-2.4.4.pom
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.10/2.4.4/jackson-module-scala_2.10-2.4.4.pom (5 KB at 16.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.10.4/scala-reflect-2.10.4.pom
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.10.4/scala-reflect-2.10.4.pom (2 KB at 7.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.8.1/commons-compress-1.8.1.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.3/commons-math3-3.3.jar
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.7/slf4j-api-1.7.7.jar
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.4.4/jackson-core-2.4.4.jar
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.4.0/jackson-annotations-2.4.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.7/slf4j-api-1.7.7.jar (29 KB at 62.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.4.4/jackson-dataformat-yaml-2.4.4.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.4.0/jackson-annotations-2.4.0.jar (38 KB at 51.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/projectlombok/lombok/1.16.6/lombok-1.16.6.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.4.4/jackson-core-2.4.4.jar (221 KB at 83.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/datavec/datavec-spark_2.10/0.6.0/datavec-spark_2.10-0.6.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.8.1/commons-compress-1.8.1.jar (357 KB at 116.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-core_2.10/1.5.1/spark-core_2.10-1.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.4.4/jackson-dataformat-yaml-2.4.4.jar (314 KB at 97.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/twitter/chill_2.10/0.5.0/chill_2.10-0.5.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/datavec/datavec-spark_2.10/0.6.0/datavec-spark_2.10-0.6.0.jar (120 KB at 33.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/twitter/chill_2.10/0.5.0/chill_2.10-0.5.0.jar (216 KB at 37.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.jar
Downloaded: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.jar (103 KB at 13.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.jar (62 KB at 7.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-launcher_2.10/1.5.1/spark-launcher_2.10-1.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-launcher_2.10/1.5.1/spark-launcher_2.10-1.5.1.jar (43 KB at 4.7 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-common_2.10/1.5.1/spark-network-common_2.10-1.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar (870 KB at 76.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-shuffle_2.10/1.5.1/spark-network-shuffle_2.10-1.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-shuffle_2.10/1.5.1/spark-network-shuffle_2.10-1.5.1.jar (49 KB at 4.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/spark/spark-unsafe_2.10/1.5.1/spark-unsafe_2.10-1.5.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-unsafe_2.10/1.5.1/spark-unsafe_2.10-1.5.1.jar (43 KB at 3.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava/14.0.1/guava-14.0.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.3/commons-math3-3.3.jar (1907 KB at 141.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.1.7/snappy-java-1.1.1.7.jar
Downloaded: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.1.7/snappy-java-1.1.1.7.jar (581 KB at 37.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/roaringbitmap/RoaringBitmap/0.4.5/RoaringBitmap-0.4.5.jar
Downloaded: https://repo.maven.apache.org/maven2/org/projectlombok/lombok/1.16.6/lombok-1.16.6.jar (1344 KB at 85.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-remote_2.10/2.3.11/akka-remote_2.10-2.3.11.jar
Downloaded: https://repo.maven.apache.org/maven2/org/roaringbitmap/RoaringBitmap/0.4.5/RoaringBitmap-0.4.5.jar (107 KB at 6.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.10/2.3.11/akka-actor_2.10-2.3.11.jar
Downloaded: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-remote_2.10/2.3.11/akka-remote_2.10-2.3.11.jar (1321 KB at 68.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.10/2.3.11/akka-slf4j_2.10-2.3.11.jar
Downloaded: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.10/2.3.11/akka-slf4j_2.10-2.3.11.jar (16 KB at 0.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.10.4/scala-library-2.10.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-network-common_2.10/1.5.1/spark-network-common_2.10-1.5.1.jar (2276 KB at 94.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/json4s/json4s-jackson_2.10/3.2.10/json4s-jackson_2.10-3.2.10.jar
Downloaded: https://repo.maven.apache.org/maven2/org/json4s/json4s-jackson_2.10/3.2.10/json4s-jackson_2.10-3.2.10.jar (40 KB at 1.5 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/json4s/json4s-core_2.10/3.2.10/json4s-core_2.10-3.2.10.jar
Downloaded: https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.10/2.3.11/akka-actor_2.10-2.3.11.jar (2596 KB at 101.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/json4s/json4s-ast_2.10/3.2.10/json4s-ast_2.10-3.2.10.jar
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava/14.0.1/guava-14.0.1.jar (2138 KB at 81.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.10.0/scalap-2.10.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/json4s/json4s-ast_2.10/3.2.10/json4s-ast_2.10-3.2.10.jar (82 KB at 3.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.10.0/scala-compiler-2.10.0.jar
Downloaded: https://repo.maven.apache.org/maven2/org/json4s/json4s-core_2.10/3.2.10/json4s-core_2.10-3.2.10.jar (571 KB at 16.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.10/2.4.4/jackson-module-scala_2.10-2.4.4.jar
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.10.0/scalap-2.10.0.jar (835 KB at 20.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.10.4/scala-reflect-2.10.4.jar
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.10/2.4.4/jackson-module-scala_2.10-2.4.4.jar (537 KB at 12.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-client/0.7.1/tachyon-client-0.7.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.10.4/scala-library-2.10.4.jar (6960 KB at 127.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.1.0-incubating/curator-client-2.1.0-incubating.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.1.0-incubating/curator-client-2.1.0-incubating.jar (61 KB at 1.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-hdfs/0.7.1/tachyon-underfs-hdfs-0.7.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-hdfs/0.7.1/tachyon-underfs-hdfs-0.7.1.jar (12 KB at 0.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-local/0.7.1/tachyon-underfs-local-0.7.1.jar
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-underfs-local/0.7.1/tachyon-underfs-local-0.7.1.jar (8 KB at 0.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/razorvine/pyrolite/4.4/pyrolite-4.4.jar
Downloaded: https://repo.maven.apache.org/maven2/net/razorvine/pyrolite/4.4/pyrolite-4.4.jar (82 KB at 1.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/net/sf/py4j/py4j/0.8.2.1/py4j-0.8.2.1.jar
Downloaded: https://repo.maven.apache.org/maven2/net/sf/py4j/py4j/0.8.2.1/py4j-0.8.2.1.jar (79 KB at 1.3 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/tachyonproject/tachyon-client/0.7.1/tachyon-client-0.7.1.jar (1926 KB at 30.6 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.10.4/scala-reflect-2.10.4.jar (3129 KB at 47.3 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/apache/spark/spark-core_2.10/1.5.1/spark-core_2.10-1.5.1.jar (10858 KB at 146.5 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.10.0/scala-compiler-2.10.0.jar (13818 KB at 156.6 KB/sec)
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ datavec-examples ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ datavec-examples ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:compile (default-compile) @ datavec-examples ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 4 source files to /Users/USERNAME/dl4j-examples/datavec-examples/target/classes
[INFO] /Users/USERNAME/dl4j-examples/datavec-examples/src/main/java/org/datavec/transform/logdata/LogDataExample.java: Some input files use or override a deprecated API.
[INFO] /Users/USERNAME/dl4j-examples/datavec-examples/src/main/java/org/datavec/transform/logdata/LogDataExample.java: Recompile with -Xlint:deprecation for details.
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ datavec-examples ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/USERNAME/dl4j-examples/datavec-examples/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:testCompile (default-testCompile) @ datavec-examples ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ datavec-examples ---
[INFO] No tests to run.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ datavec-examples ---
[INFO] Building jar: /Users/USERNAME/dl4j-examples/datavec-examples/target/datavec-examples-0.5-SNAPSHOT.jar
[INFO]
[INFO] --- maven-shade-plugin:2.4.3:shade (default) @ datavec-examples ---
[INFO] Including org.datavec:datavec-api:jar:0.6.0 in the shaded jar.
[INFO] Including org.apache.commons:commons-compress:jar:1.8.1 in the shaded jar.
[INFO] Including org.apache.commons:commons-lang3:jar:3.3.1 in the shaded jar.
[INFO] Including org.apache.commons:commons-math3:jar:3.3 in the shaded jar.
[INFO] Including commons-io:commons-io:jar:2.4 in the shaded jar.
[INFO] Including org.slf4j:slf4j-api:jar:1.7.7 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-core:jar:2.4.4 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-databind:jar:2.4.4 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0 in the shaded jar.
[INFO] Including com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.4.4 in the shaded jar.
[INFO] Including org.yaml:snakeyaml:jar:1.12 in the shaded jar.
[INFO] Including com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.4.4 in the shaded jar.
[INFO] Including joda-time:joda-time:jar:2.9.2 in the shaded jar.
[INFO] Including org.projectlombok:lombok:jar:1.16.6 in the shaded jar.
[INFO] Including org.freemarker:freemarker:jar:2.3.23 in the shaded jar.
[INFO] Including org.datavec:datavec-spark_2.10:jar:0.6.0 in the shaded jar.
[INFO] Including org.apache.spark:spark-core_2.10:jar:1.5.1 in the shaded jar.
[INFO] Including org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 in the shaded jar.
[INFO] Including org.apache.avro:avro-ipc:jar:1.7.7 in the shaded jar.
[INFO] Including org.apache.avro:avro:jar:1.7.7 in the shaded jar.
[INFO] Including org.apache.avro:avro-ipc:jar:tests:1.7.7 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-core-asl:jar:1.9.13 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 in the shaded jar.
[INFO] Including com.twitter:chill_2.10:jar:0.5.0 in the shaded jar.
[INFO] Including com.esotericsoftware.kryo:kryo:jar:2.21 in the shaded jar.
[INFO] Including com.esotericsoftware.reflectasm:reflectasm:jar:shaded:1.07 in the shaded jar.
[INFO] Including com.esotericsoftware.minlog:minlog:jar:1.2 in the shaded jar.
[INFO] Including org.objenesis:objenesis:jar:1.2 in the shaded jar.
[INFO] Including com.twitter:chill-java:jar:0.5.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-client:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-common:jar:2.2.0 in the shaded jar.
[INFO] Including commons-cli:commons-cli:jar:1.2 in the shaded jar.
[INFO] Including org.apache.commons:commons-math:jar:2.1 in the shaded jar.
[INFO] Including xmlenc:xmlenc:jar:0.52 in the shaded jar.
[INFO] Including commons-configuration:commons-configuration:jar:1.6 in the shaded jar.
[INFO] Including commons-collections:commons-collections:jar:3.2.1 in the shaded jar.
[INFO] Including commons-digester:commons-digester:jar:1.8 in the shaded jar.
[INFO] Including commons-beanutils:commons-beanutils:jar:1.7.0 in the shaded jar.
[INFO] Including commons-beanutils:commons-beanutils-core:jar:1.8.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-auth:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-hdfs:jar:2.2.0 in the shaded jar.
[INFO] Including org.mortbay.jetty:jetty-util:jar:6.1.26 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 in the shaded jar.
[INFO] Including com.google.inject:guice:jar:3.0 in the shaded jar.
[INFO] Including javax.inject:javax.inject:jar:1 in the shaded jar.
[INFO] Including aopalliance:aopalliance:jar:1.0 in the shaded jar.
[INFO] Including com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 in the shaded jar.
[INFO] Including com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 in the shaded jar.
[INFO] Including javax.servlet:javax.servlet-api:jar:3.0.1 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-client:jar:1.9 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-grizzly2:jar:1.9 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-http:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-framework:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 in the shaded jar.
[INFO] Including org.glassfish.external:management-api:jar:3.0.0-b012 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish:javax.servlet:jar:3.1 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-json:jar:1.9 in the shaded jar.
[INFO] Including org.codehaus.jettison:jettison:jar:1.1 in the shaded jar.
[INFO] Including stax:stax-api:jar:1.0.1 in the shaded jar.
[INFO] Including com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 in the shaded jar.
[INFO] Including javax.xml.bind:jaxb-api:jar:2.2.2 in the shaded jar.
[INFO] Including javax.activation:activation:jar:1.1 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-jaxrs:jar:1.8.3 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-xc:jar:1.8.3 in the shaded jar.
[INFO] Including com.sun.jersey.contribs:jersey-guice:jar:1.9 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-annotations:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.spark:spark-launcher_2.10:jar:1.5.1 in the shaded jar.
[INFO] Including org.apache.spark:spark-network-common_2.10:jar:1.5.1 in the shaded jar.
[INFO] Including org.apache.spark:spark-network-shuffle_2.10:jar:1.5.1 in the shaded jar.
[INFO] Including org.apache.spark:spark-unsafe_2.10:jar:1.5.1 in the shaded jar.
[INFO] Including net.java.dev.jets3t:jets3t:jar:0.7.1 in the shaded jar.
[INFO] Including commons-codec:commons-codec:jar:1.3 in the shaded jar.
[INFO] Including commons-httpclient:commons-httpclient:jar:3.1 in the shaded jar.
[INFO] Including org.apache.curator:curator-recipes:jar:2.4.0 in the shaded jar.
[INFO] Including org.apache.curator:curator-framework:jar:2.4.0 in the shaded jar.
[INFO] Including org.apache.zookeeper:zookeeper:jar:3.4.5 in the shaded jar.
[INFO] Including jline:jline:jar:0.9.94 in the shaded jar.
[INFO] Including com.google.guava:guava:jar:14.0.1 in the shaded jar.
[INFO] Including org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016 in the shaded jar.
[INFO] Including com.google.code.findbugs:jsr305:jar:1.3.9 in the shaded jar.
[INFO] Including org.slf4j:jul-to-slf4j:jar:1.7.10 in the shaded jar.
[INFO] Including org.slf4j:jcl-over-slf4j:jar:1.7.10 in the shaded jar.
[INFO] Including log4j:log4j:jar:1.2.17 in the shaded jar.
[INFO] Including org.slf4j:slf4j-log4j12:jar:1.7.10 in the shaded jar.
[INFO] Including com.ning:compress-lzf:jar:1.0.3 in the shaded jar.
[INFO] Including org.xerial.snappy:snappy-java:jar:1.1.1.7 in the shaded jar.
[INFO] Including net.jpountz.lz4:lz4:jar:1.3.0 in the shaded jar.
[INFO] Including org.roaringbitmap:RoaringBitmap:jar:0.4.5 in the shaded jar.
[INFO] Including commons-net:commons-net:jar:2.2 in the shaded jar.
[INFO] Including com.typesafe.akka:akka-remote_2.10:jar:2.3.11 in the shaded jar.
[INFO] Including com.typesafe.akka:akka-actor_2.10:jar:2.3.11 in the shaded jar.
[INFO] Including com.typesafe:config:jar:1.2.1 in the shaded jar.
[INFO] Including io.netty:netty:jar:3.8.0.Final in the shaded jar.
[INFO] Including com.google.protobuf:protobuf-java:jar:2.5.0 in the shaded jar.
[INFO] Including org.uncommons.maths:uncommons-maths:jar:1.2.2a in the shaded jar.
[INFO] Including com.typesafe.akka:akka-slf4j_2.10:jar:2.3.11 in the shaded jar.
[INFO] Including org.scala-lang:scala-library:jar:2.10.4 in the shaded jar.
[INFO] Including org.json4s:json4s-jackson_2.10:jar:3.2.10 in the shaded jar.
[INFO] Including org.json4s:json4s-core_2.10:jar:3.2.10 in the shaded jar.
[INFO] Including org.json4s:json4s-ast_2.10:jar:3.2.10 in the shaded jar.
[INFO] Including org.scala-lang:scalap:jar:2.10.0 in the shaded jar.
[INFO] Including org.scala-lang:scala-compiler:jar:2.10.0 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-server:jar:1.9 in the shaded jar.
[INFO] Including asm:asm:jar:3.1 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-core:jar:1.9 in the shaded jar.
[INFO] Including org.apache.mesos:mesos:jar:shaded-protobuf:0.21.1 in the shaded jar.
[INFO] Including io.netty:netty-all:jar:4.0.29.Final in the shaded jar.
[INFO] Including com.clearspring.analytics:stream:jar:2.7.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-core:jar:3.1.2 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-jvm:jar:3.1.2 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-json:jar:3.1.2 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-graphite:jar:3.1.2 in the shaded jar.
[INFO] Including com.fasterxml.jackson.module:jackson-module-scala_2.10:jar:2.4.4 in the shaded jar.
[INFO] Including org.scala-lang:scala-reflect:jar:2.10.4 in the shaded jar.
[INFO] Including com.thoughtworks.paranamer:paranamer:jar:2.6 in the shaded jar.
[INFO] Including org.apache.ivy:ivy:jar:2.4.0 in the shaded jar.
[INFO] Including oro:oro:jar:2.0.8 in the shaded jar.
[INFO] Including org.tachyonproject:tachyon-client:jar:0.7.1 in the shaded jar.
[INFO] Including commons-lang:commons-lang:jar:2.4 in the shaded jar.
[INFO] Including org.apache.curator:curator-client:jar:2.1.0-incubating in the shaded jar.
[INFO] Including org.tachyonproject:tachyon-underfs-hdfs:jar:0.7.1 in the shaded jar.
[INFO] Including org.tachyonproject:tachyon-underfs-local:jar:0.7.1 in the shaded jar.
[INFO] Including net.razorvine:pyrolite:jar:4.4 in the shaded jar.
[INFO] Including net.sf.py4j:py4j:jar:0.8.2.1 in the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[WARNING] commons-beanutils-1.7.0.jar, commons-beanutils-core-1.8.0.jar define 82 overlapping classes:
[WARNING]   - org.apache.commons.beanutils.ConvertUtilsBean
[WARNING]   - org.apache.commons.beanutils.converters.SqlTimeConverter
[WARNING]   - org.apache.commons.beanutils.Converter
[WARNING]   - org.apache.commons.beanutils.converters.FloatArrayConverter
[WARNING]   - org.apache.commons.beanutils.NestedNullException
[WARNING]   - org.apache.commons.beanutils.ConvertingWrapDynaBean
[WARNING]   - org.apache.commons.beanutils.converters.LongArrayConverter
[WARNING]   - org.apache.commons.beanutils.converters.SqlDateConverter
[WARNING]   - org.apache.commons.beanutils.converters.BooleanArrayConverter
[WARNING]   - org.apache.commons.beanutils.converters.StringConverter
[WARNING]   - 72 more...
[WARNING] javax.servlet-api-3.0.1.jar, javax.servlet-3.1.jar, javax.servlet-3.0.0.v201112011016.jar define 74 overlapping classes:
[WARNING]   - javax.servlet.http.Cookie
[WARNING]   - javax.servlet.ServletContext
[WARNING]   - javax.servlet.Registration
[WARNING]   - javax.servlet.http.HttpSessionListener
[WARNING]   - javax.servlet.http.HttpSessionContext
[WARNING]   - javax.servlet.FilterChain
[WARNING]   - javax.servlet.http.HttpServletRequestWrapper
[WARNING]   - javax.servlet.http.HttpSessionAttributeListener
[WARNING]   - javax.servlet.annotation.HandlesTypes
[WARNING]   - javax.servlet.http.HttpSessionBindingListener
[WARNING]   - 64 more...
[WARNING] hadoop-yarn-common-2.2.0.jar, hadoop-yarn-api-2.2.0.jar define 3 overlapping classes:
[WARNING]   - org.apache.hadoop.yarn.util.package-info
[WARNING]   - org.apache.hadoop.yarn.factories.package-info
[WARNING]   - org.apache.hadoop.yarn.factory.providers.package-info
[WARNING] guava-14.0.1.jar, spark-network-common_2.10-1.5.1.jar define 7 overlapping classes:
[WARNING]   - com.google.common.base.Absent
[WARNING]   - com.google.common.base.Function
[WARNING]   - com.google.common.base.Supplier
[WARNING]   - com.google.common.base.Optional$1$1
[WARNING]   - com.google.common.base.Optional$1
[WARNING]   - com.google.common.base.Present
[WARNING]   - com.google.common.base.Optional
[WARNING] reflectasm-1.07-shaded.jar, kryo-2.21.jar define 23 overlapping classes:
[WARNING]   - com.esotericsoftware.reflectasm.AccessClassLoader
[WARNING]   - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.Opcodes
[WARNING]   - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.Label
[WARNING]   - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.ClassWriter
[WARNING]   - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.AnnotationVisitor
[WARNING]   - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.Type
[WARNING]   - com.esotericsoftware.reflectasm.FieldAccess
[WARNING]   - com.esotericsoftware.reflectasm.ConstructorAccess
[WARNING]   - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.Edge
[WARNING]   - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.ClassVisitor
[WARNING]   - 13 more...
[WARNING] commons-collections-3.2.1.jar, commons-beanutils-1.7.0.jar, commons-beanutils-core-1.8.0.jar define 10 overlapping classes:
[WARNING]   - org.apache.commons.collections.FastHashMap$EntrySet
[WARNING]   - org.apache.commons.collections.FastHashMap$KeySet
[WARNING]   - org.apache.commons.collections.ArrayStack
[WARNING]   - org.apache.commons.collections.FastHashMap$CollectionView$CollectionViewIterator
[WARNING]   - org.apache.commons.collections.FastHashMap$Values
[WARNING]   - org.apache.commons.collections.FastHashMap$CollectionView
[WARNING]   - org.apache.commons.collections.FastHashMap$1
[WARNING]   - org.apache.commons.collections.Buffer
[WARNING]   - org.apache.commons.collections.FastHashMap
[WARNING]   - org.apache.commons.collections.BufferUnderflowException
[WARNING] spark-core_2.10-1.5.1.jar, spark-network-shuffle_2.10-1.5.1.jar, spark-unsafe_2.10-1.5.1.jar, unused-1.0.0.jar, spark-launcher_2.10-1.5.1.jar, spark-network-common_2.10-1.5.1.jar define 1 overlapping classes:
[WARNING]   - org.apache.spark.unused.UnusedStubClass
[WARNING] objenesis-1.2.jar, kryo-2.21.jar define 32 overlapping classes:
[WARNING]   - org.objenesis.ObjenesisBase
[WARNING]   - org.objenesis.instantiator.gcj.GCJInstantiator
[WARNING]   - org.objenesis.ObjenesisHelper
[WARNING]   - org.objenesis.instantiator.jrockit.JRockitLegacyInstantiator
[WARNING]   - org.objenesis.instantiator.sun.SunReflectionFactoryInstantiator
[WARNING]   - org.objenesis.instantiator.ObjectInstantiator
[WARNING]   - org.objenesis.instantiator.gcj.GCJInstantiatorBase$DummyStream
[WARNING]   - org.objenesis.instantiator.basic.ObjectStreamClassInstantiator
[WARNING]   - org.objenesis.ObjenesisException
[WARNING]   - org.objenesis.Objenesis
[WARNING]   - 22 more...
[WARNING] minlog-1.2.jar, kryo-2.21.jar define 2 overlapping classes:
[WARNING]   - com.esotericsoftware.minlog.Log
[WARNING]   - com.esotericsoftware.minlog.Log$Logger
[WARNING] maven-shade-plugin has detected that some class files are
[WARNING] present in two or more JARs. When this happens, only one
[WARNING] single version of the class is copied to the uber jar.
[WARNING] Usually this is not harmful and you can skip these warnings,
[WARNING] otherwise try to manually exclude artifacts based on
[WARNING] mvn dependency:tree -Ddetail=true and the above output.
[WARNING] See http://maven.apache.org/plugins/maven-shade-plugin/
[INFO] Attaching shaded artifact.
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ datavec-examples ---
[INFO] Installing /Users/USERNAME/dl4j-examples/datavec-examples/target/datavec-examples-0.5-SNAPSHOT.jar to /Users/USERNAME/.m2/repository/org/deeplearning4j/datavec-examples/0.5-SNAPSHOT/datavec-examples-0.5-SNAPSHOT.jar
[INFO] Installing /Users/USERNAME/dl4j-examples/datavec-examples/pom.xml to /Users/USERNAME/.m2/repository/org/deeplearning4j/datavec-examples/0.5-SNAPSHOT/datavec-examples-0.5-SNAPSHOT.pom
[INFO] Installing /Users/USERNAME/dl4j-examples/datavec-examples/target/datavec-examples-0.5-SNAPSHOT-bin.jar to /Users/USERNAME/.m2/repository/org/deeplearning4j/datavec-examples/0.5-SNAPSHOT/datavec-examples-0.5-SNAPSHOT-bin.jar
[INFO]                                                                      
[INFO] ------------------------------------------------------------------------
[INFO] Building DeepLearning4j CUDA special examples 0.5-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-cuda-7.5-platform/0.6.0/nd4j-cuda-7.5-platform-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-cuda-7.5-platform/0.6.0/nd4j-cuda-7.5-platform-0.6.0.pom (2 KB at 7.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-cuda-7.5/0.6.0/nd4j-cuda-7.5-0.6.0.pom
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-cuda-7.5/0.6.0/nd4j-cuda-7.5-0.6.0.pom (10 KB at 33.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.pom (11 KB at 42.3 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/freemarker/freemarker/2.3.21/freemarker-2.3.21.jar
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-cuda-7.5-platform/0.6.0/nd4j-cuda-7.5-platform-0.6.0.jar
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-cuda-7.5/0.6.0/nd4j-cuda-7.5-0.6.0.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.jar
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-cuda-7.5/0.6.0/nd4j-cuda-7.5-0.6.0-linux-x86_64.jar
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-cuda-7.5-platform/0.6.0/nd4j-cuda-7.5-platform-0.6.0.jar (2 KB at 4.6 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-cuda-7.5/0.6.0/nd4j-cuda-7.5-0.6.0-macosx-x86_64.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.jar (110 KB at 43.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-cuda-7.5/0.6.0/nd4j-cuda-7.5-0.6.0-windows-x86_64.jar
Downloaded: https://repo.maven.apache.org/maven2/org/freemarker/freemarker/2.3.21/freemarker-2.3.21.jar (1160 KB at 83.0 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-cuda-7.5/0.6.0/nd4j-cuda-7.5-0.6.0.jar (2499 KB at 132.6 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-cuda-7.5/0.6.0/nd4j-cuda-7.5-0.6.0-linux-x86_64.jar (29582 KB at 214.8 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-cuda-7.5/0.6.0/nd4j-cuda-7.5-0.6.0-macosx-x86_64.jar (29393 KB at 213.1 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/nd4j/nd4j-cuda-7.5/0.6.0/nd4j-cuda-7.5-0.6.0-windows-x86_64.jar (30308 KB at 206.7 KB/sec)
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ dl4j-cuda-specific-examples ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ dl4j-cuda-specific-examples ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:compile (default-compile) @ dl4j-cuda-specific-examples ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to /Users/USERNAME/dl4j-examples/dl4j-cuda-specific-examples/target/classes
[INFO] /Users/USERNAME/dl4j-examples/dl4j-cuda-specific-examples/src/main/java/org/deeplearning4j/examples/multigpu/MultiGpuLenetMnistExample.java: /Users/USERNAME/dl4j-examples/dl4j-cuda-specific-examples/src/main/java/org/deeplearning4j/examples/multigpu/MultiGpuLenetMnistExample.java uses or overrides a deprecated API.
[INFO] /Users/USERNAME/dl4j-examples/dl4j-cuda-specific-examples/src/main/java/org/deeplearning4j/examples/multigpu/MultiGpuLenetMnistExample.java: Recompile with -Xlint:deprecation for details.
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ dl4j-cuda-specific-examples ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/USERNAME/dl4j-examples/dl4j-cuda-specific-examples/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:testCompile (default-testCompile) @ dl4j-cuda-specific-examples ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ dl4j-cuda-specific-examples ---
[INFO] No tests to run.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ dl4j-cuda-specific-examples ---
[INFO] Building jar: /Users/USERNAME/dl4j-examples/dl4j-cuda-specific-examples/target/dl4j-cuda-specific-examples-0.5-SNAPSHOT.jar
[INFO]
[INFO] --- maven-shade-plugin:2.4.3:shade (default) @ dl4j-cuda-specific-examples ---
[INFO] Including org.deeplearning4j:deeplearning4j-nlp:jar:0.6.0 in the shaded jar.
[INFO] Including org.apache.directory.studio:org.apache.commons.codec:jar:1.8 in the shaded jar.
[INFO] Including commons-codec:commons-codec:jar:1.8 in the shaded jar.
[INFO] Including commons-lang:commons-lang:jar:2.6 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-assets:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-core:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-util:jar:0.8.0 in the shaded jar.
[INFO] Including com.google.code.findbugs:jsr305:jar:3.0.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-jackson:jar:0.8.0 in the shaded jar.
[INFO] Including com.fasterxml.jackson.datatype:jackson-datatype-jdk7:jar:2.5.1 in the shaded jar.
[INFO] Including com.fasterxml.jackson.datatype:jackson-datatype-guava:jar:2.5.1 in the shaded jar.
[INFO] Including com.fasterxml.jackson.module:jackson-module-afterburner:jar:2.5.1 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-validation:jar:0.8.0 in the shaded jar.
[INFO] Including org.hibernate:hibernate-validator:jar:5.1.3.Final in the shaded jar.
[INFO] Including javax.validation:validation-api:jar:1.1.0.Final in the shaded jar.
[INFO] Including org.jboss.logging:jboss-logging:jar:3.1.3.GA in the shaded jar.
[INFO] Including com.fasterxml:classmate:jar:1.0.0 in the shaded jar.
[INFO] Including org.glassfish:javax.el:jar:3.0.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-configuration:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-logging:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-logback:jar:3.1.0 in the shaded jar.
[INFO] Including org.slf4j:jul-to-slf4j:jar:1.7.10 in the shaded jar.
[INFO] Including ch.qos.logback:logback-core:jar:1.1.2 in the shaded jar.
[INFO] Including org.slf4j:log4j-over-slf4j:jar:1.7.10 in the shaded jar.
[INFO] Including org.slf4j:jcl-over-slf4j:jar:1.7.10 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-util:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-metrics:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-jersey:jar:0.8.0 in the shaded jar.
[INFO] Including org.glassfish.jersey.core:jersey-server:jar:2.16 in the shaded jar.
[INFO] Including org.glassfish.jersey.media:jersey-media-jaxb:jar:2.16 in the shaded jar.
[INFO] Including org.glassfish.jersey.ext:jersey-metainf-services:jar:2.16 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-jersey2:jar:3.1.0 in the shaded jar.
[INFO] Including com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:jar:2.5.1 in the shaded jar.
[INFO] Including com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:jar:2.5.1 in the shaded jar.
[INFO] Including com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.5.1 in the shaded jar.
[INFO] Including org.glassfish.jersey.containers:jersey-container-servlet:jar:2.16 in the shaded jar.
[INFO] Including org.glassfish.jersey.containers:jersey-container-servlet-core:jar:2.16 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-server:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including javax.servlet:javax.servlet-api:jar:3.1.0 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-io:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-webapp:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-xml:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-continuation:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-jetty:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-jetty9:jar:3.1.0 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-servlet:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-security:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-servlets:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-http:jar:9.2.9.v20150224 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-lifecycle:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-core:jar:3.1.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-jvm:jar:3.1.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-servlets:jar:3.1.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-json:jar:3.1.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-healthchecks:jar:3.1.0 in the shaded jar.
[INFO] Including net.sourceforge.argparse4j:argparse4j:jar:0.4.4 in the shaded jar.
[INFO] Including org.eclipse.jetty.toolchain.setuid:jetty-setuid-java:jar:1.0.2 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-servlets:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-annotation:jar:3.1.0 in the shaded jar.
[INFO] Including ch.qos.logback:logback-classic:jar:1.1.2 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-views-mustache:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-views:jar:0.8.0 in the shaded jar.
[INFO] Including com.github.spullara.mustache.java:compiler:jar:0.8.17 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-views-freemarker:jar:0.8.0 in the shaded jar.
[INFO] Including org.freemarker:freemarker:jar:2.3.21 in the shaded jar.
[INFO] Including org.nd4j:nd4j-jackson:jar:0.6.0 in the shaded jar.
[INFO] Including org.deeplearning4j:deeplearning4j-core:jar:0.6.0 in the shaded jar.
[INFO] Including org.slf4j:slf4j-api:jar:1.7.12 in the shaded jar.
[INFO] Including org.deeplearning4j:deeplearning4j-nn:jar:0.6.0 in the shaded jar.
[INFO] Including org.apache.commons:commons-math3:jar:3.4.1 in the shaded jar.
[INFO] Including commons-io:commons-io:jar:2.4 in the shaded jar.
[INFO] Including org.apache.commons:commons-compress:jar:1.8 in the shaded jar.
[INFO] Including org.tukaani:xz:jar:1.5 in the shaded jar.
[INFO] Including org.nd4j:nd4j-api:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-buffer:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-common:jar:0.6.0 in the shaded jar.
[INFO] Including org.reflections:reflections:jar:0.9.10 in the shaded jar.
[INFO] Including com.google.code.findbugs:annotations:jar:2.0.1 in the shaded jar.
[INFO] Including org.nd4j:nd4j-context:jar:0.6.0 in the shaded jar.
[INFO] Including org.apache.commons:commons-lang3:jar:3.3.1 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-core:jar:2.5.1 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-databind:jar:2.5.1 in the shaded jar.
[INFO] Including org.json:json:jar:20131018 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-annotations:jar:2.5.1 in the shaded jar.
[INFO] Including org.projectlombok:lombok:jar:1.16.4 in the shaded jar.
[INFO] Including com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.5.1 in the shaded jar.
[INFO] Including org.yaml:snakeyaml:jar:1.12 in the shaded jar.
[INFO] Including org.datavec:datavec-nd4j-common:jar:0.6.0 in the shaded jar.
[INFO] Including org.datavec:datavec-api:jar:0.6.0 in the shaded jar.
[INFO] Including com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.4.4 in the shaded jar.
[INFO] Including joda-time:joda-time:jar:2.9.2 in the shaded jar.
[INFO] Including org.datavec:datavec-data-image:jar:0.6.0 in the shaded jar.
[INFO] Including com.github.jai-imageio:jai-imageio-core:jar:1.3.0 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-jpeg:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-core:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-metadata:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.common:common-lang:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.common:common-io:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.common:common-image:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-tiff:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-psd:jar:3.1.1 in the shaded jar.
[INFO] Including com.twelvemonkeys.imageio:imageio-bmp:jar:3.1.1 in the shaded jar.
[INFO] Including org.bytedeco:javacpp:jar:1.2.4 in the shaded jar.
[INFO] Including org.bytedeco:javacv:jar:1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:linux-x86_64:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:macosx-x86_64:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:windows-x86_64:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:opencv:jar:linux-ppc64le:3.1.0-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:linux-x86_64:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:macosx-x86_64:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:windows-x86_64:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:ffmpeg:jar:linux-ppc64le:3.0.2-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:1.73-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:linux-x86_64:1.73-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:macosx-x86_64:1.73-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:windows-x86_64:1.73-1.2 in the shaded jar.
[INFO] Including org.bytedeco.javacpp-presets:leptonica:jar:linux-ppc64le:1.73-1.2 in the shaded jar.
[INFO] Including org.deeplearning4j:deeplearning4j-ui:jar:0.6.0 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-client:jar:0.8.0 in the shaded jar.
[INFO] Including org.glassfish.jersey.core:jersey-client:jar:2.16 in the shaded jar.
[INFO] Including javax.ws.rs:javax.ws.rs-api:jar:2.0.1 in the shaded jar.
[INFO] Including org.glassfish.hk2:hk2-api:jar:2.4.0-b09 in the shaded jar.
[INFO] Including org.glassfish.hk2:hk2-utils:jar:2.4.0-b09 in the shaded jar.
[INFO] Including org.glassfish.hk2.external:aopalliance-repackaged:jar:2.4.0-b09 in the shaded jar.
[INFO] Including org.glassfish.hk2.external:javax.inject:jar:2.4.0-b09 in the shaded jar.
[INFO] Including org.glassfish.hk2:hk2-locator:jar:2.4.0-b09 in the shaded jar.
[INFO] Including org.javassist:javassist:jar:3.18.1-GA in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-httpclient:jar:3.1.0 in the shaded jar.
[INFO] Including org.apache.httpcomponents:httpclient:jar:4.3.5 in the shaded jar.
[INFO] Including org.apache.httpcomponents:httpcore:jar:4.3.2 in the shaded jar.
[INFO] Including org.glassfish.jersey.connectors:jersey-apache-connector:jar:2.16 in the shaded jar.
[INFO] Including io.dropwizard:dropwizard-forms:jar:0.8.0 in the shaded jar.
[INFO] Including org.glassfish.jersey.media:jersey-media-multipart:jar:2.16 in the shaded jar.
[INFO] Including org.glassfish.jersey.core:jersey-common:jar:2.16 in the shaded jar.
[INFO] Including javax.annotation:javax.annotation-api:jar:1.2 in the shaded jar.
[INFO] Including org.glassfish.jersey.bundles.repackaged:jersey-guava:jar:2.16 in the shaded jar.
[INFO] Including org.glassfish.hk2:osgi-resource-locator:jar:1.0.1 in the shaded jar.
[INFO] Including org.jvnet.mimepull:mimepull:jar:1.9.3 in the shaded jar.
[INFO] Including com.google.guava:guava:jar:19.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-cuda-7.5-platform:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-cuda-7.5:jar:0.6.0 in the shaded jar.
[INFO] Including org.apache.commons:commons-pool2:jar:2.4.2 in the shaded jar.
[INFO] Including org.nd4j:nd4j-native-api:jar:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-cuda-7.5:jar:linux-x86_64:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-cuda-7.5:jar:macosx-x86_64:0.6.0 in the shaded jar.
[INFO] Including org.nd4j:nd4j-cuda-7.5:jar:windows-x86_64:0.6.0 in the shaded jar.
[INFO] Including jfree:jfreechart:jar:1.0.13 in the shaded jar.
[INFO] Including jfree:jcommon:jar:1.0.16 in the shaded jar.
[INFO] Including org.deeplearning4j:arbiter-deeplearning4j:jar:0.6.0 in the shaded jar.
[INFO] Including org.deeplearning4j:arbiter-core:jar:0.6.0 in the shaded jar.
[INFO] Including args4j:args4j:jar:2.33 in the shaded jar.
[INFO] Including org.deeplearning4j:deeplearning4j-ui-components:jar:0.6.0 in the shaded jar.
[WARNING] jsr305-3.0.0.jar, annotations-2.0.1.jar define 34 overlapping classes:
[WARNING]   - javax.annotation.RegEx
[WARNING]   - javax.annotation.concurrent.Immutable
[WARNING]   - javax.annotation.meta.TypeQualifierDefault
[WARNING]   - javax.annotation.meta.TypeQualifier
[WARNING]   - javax.annotation.Syntax
[WARNING]   - javax.annotation.Nonnull
[WARNING]   - javax.annotation.CheckReturnValue
[WARNING]   - javax.annotation.CheckForNull
[WARNING]   - javax.annotation.meta.TypeQualifierNickname
[WARNING]   - javax.annotation.MatchesPattern
[WARNING]   - 24 more...
[WARNING] maven-shade-plugin has detected that some class files are
[WARNING] present in two or more JARs. When this happens, only one
[WARNING] single version of the class is copied to the uber jar.
[WARNING] Usually this is not harmful and you can skip these warnings,
[WARNING] otherwise try to manually exclude artifacts based on
[WARNING] mvn dependency:tree -Ddetail=true and the above output.
[WARNING] See http://maven.apache.org/plugins/maven-shade-plugin/
[INFO] Attaching shaded artifact.
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ dl4j-cuda-specific-examples ---
[INFO] Installing /Users/USERNAME/dl4j-examples/dl4j-cuda-specific-examples/target/dl4j-cuda-specific-examples-0.5-SNAPSHOT.jar to /Users/USERNAME/.m2/repository/org/deeplearning4j/dl4j-cuda-specific-examples/0.5-SNAPSHOT/dl4j-cuda-specific-examples-0.5-SNAPSHOT.jar
[INFO] Installing /Users/USERNAME/dl4j-examples/dl4j-cuda-specific-examples/pom.xml to /Users/USERNAME/.m2/repository/org/deeplearning4j/dl4j-cuda-specific-examples/0.5-SNAPSHOT/dl4j-cuda-specific-examples-0.5-SNAPSHOT.pom
[INFO] Installing /Users/USERNAME/dl4j-examples/dl4j-cuda-specific-examples/target/dl4j-cuda-specific-examples-0.5-SNAPSHOT-bin.jar to /Users/USERNAME/.m2/repository/org/deeplearning4j/dl4j-cuda-specific-examples/0.5-SNAPSHOT/dl4j-cuda-specific-examples-0.5-SNAPSHOT-bin.jar
[INFO]                                                                      
[INFO] ------------------------------------------------------------------------
[INFO] Building nd4j-examples 0.5-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.pom
Downloaded: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.pom (13 KB at 49.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.1.7/logback-parent-1.1.7.pom
Downloaded: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.1.7/logback-parent-1.1.7.pom (18 KB at 64.0 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.pom
Downloaded: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.pom (5 KB at 16.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.20/slf4j-api-1.7.20.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.20/slf4j-api-1.7.20.pom (3 KB at 10.1 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.20/slf4j-parent-1.7.20.pom
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.20/slf4j-parent-1.7.20.pom (14 KB at 51.9 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.jar
Downloading: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.5.0/jackson-annotations-2.5.0.jar
Downloading: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.jar
Downloading: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.jar
Downloading: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.20/slf4j-api-1.7.20.jar
Downloaded: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.jar (297 KB at 299.0 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.5.0/jackson-annotations-2.5.0.jar (39 KB at 31.6 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.20/slf4j-api-1.7.20.jar (40 KB at 26.5 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.jar (460 KB at 241.3 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.jar (2204 KB at 287.6 KB/sec)
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ nd4j-examples ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ nd4j-examples ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ nd4j-examples ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 6 source files to /Users/USERNAME/dl4j-examples/nd4j-examples/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ nd4j-examples ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/USERNAME/dl4j-examples/nd4j-examples/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ nd4j-examples ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ nd4j-examples ---
[INFO] No tests to run.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ nd4j-examples ---
[INFO] Building jar: /Users/USERNAME/dl4j-examples/nd4j-examples/target/nd4j-examples-0.5-SNAPSHOT.jar
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ nd4j-examples ---
[INFO] Installing /Users/USERNAME/dl4j-examples/nd4j-examples/target/nd4j-examples-0.5-SNAPSHOT.jar to /Users/USERNAME/.m2/repository/org/deeplearning4j/nd4j-examples/0.5-SNAPSHOT/nd4j-examples-0.5-SNAPSHOT.jar
[INFO] Installing /Users/USERNAME/dl4j-examples/nd4j-examples/pom.xml to /Users/USERNAME/.m2/repository/org/deeplearning4j/nd4j-examples/0.5-SNAPSHOT/nd4j-examples-0.5-SNAPSHOT.pom
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] DeepLearning4j Examples Parent ..................... SUCCESS [ 17.113 s]
[INFO] DeepLearning4j Examples ............................ SUCCESS [06:33 min]
[INFO] dl4j-spark-examples ................................ SUCCESS [  0.016 s]
[INFO] dl4j-spark-local ................................... SUCCESS [06:09 min]
[INFO] dl4j-spark-cdh ..................................... SUCCESS [ 10.333 s]
[INFO] dl4j-spark-hdp ..................................... SUCCESS [  0.011 s]
[INFO] datavec-examples ................................... SUCCESS [01:48 min]
[INFO] DeepLearning4j CUDA special examples ............... SUCCESS [02:56 min]
[INFO] nd4j-examples ...................................... SUCCESS [  9.590 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 18:04 min
[INFO] Finished at: 2016-09-25T15:21:54+09:00
[INFO] Final Memory: 141M/913M
[INFO] ------------------------------------------------------------------------