Okay
I admit I spent lot of time searching this so I am
documenting as blog.
Hadoop examples jar is present at following path on Red Hat
systems
/usr/lib/hadoop-0.20-mapreduce
[WARNING] Error injecting: de.saumya.mojo.ruby.gems.DefaultGemManager
java.lang.NoClassDefFoundError: org/sonatype/aether/RepositorySystemSession
Solution
Check the latest version of plugins used in pom. For quick hint about faulty plugin see the link below.
Add in your plugin 2.8 version for dependenvy plugin
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
</plugin>
'
'
'
Related links
https://cwiki.apache.org/confluence/display/MAVEN/AetherClassNotFound
https://github.com/torquebox/jruby-maven-plugins/issues/50
Telecom companies are using it to provide better Service to customers by monitoring networks , better network operations.
Transport verticals are trying to optimize and predict accurately the arrival times of airlines to improving baggage handling.
Financial industry has been using it to predict better fraud analysis and many more things.
Health Industry are using it to do better patient care , quick medicine research.
apt-get install
apt-get -y install maven build-essential protobuf-compiler autoconf automake
libtool cmake zlib1g-dev pkg-config libssl-dev
sudo apt-get install build-essential
mkdir /tmp/protobuf_install
cd /tmp/protobuf_install
wget https://github.com/protocolbuffers/protobuf/releases/download/v2.5.0/protobuf-2.5.0.tar.gz
tar xzvf protobuf-2.5.0.tar.gz
cd protobuf-2.5.0
./configure
make
make check
sudo make install
sudo ldconfig
protoc --version
Check the installed version
$ protoc --version
libprotoc 2.5.0
Why we need ldconfig read link below
http://code.google.com/p/protobuf/issues/detail?id=213
Related error searches
[DEBUG] protoc: error while loading shared libraries: libprotoc.so.8:
protoc: error while loading shared libraries:
[DEBUG]
libprotobuf.so.6: cannot open shared
object file: No such file or directory
Cannot find `protoc` command
If you came to this page with above error search then please do
sudo ldconfig
The details are present on link above
Download the Scala editor
Create new Scala Project
Create first Object
File > New > Scala Object
Write first Class
Run As Scala Application
Control + F11
See the output in Console
Congrats : You have run your first Scala IDE program
Lets see next