Python 3 - Fun with Python String
This post some useful tips of using strings, and some issues while dealing with…
September 21, 2018
I have a Java project and dependencies are being managed through maven. I have installed all dependencies, and each library successfully downloaded, installed. Still, editor showing compilation error in red colors. This is annoying.
So, if you installed STS, a default maven installation comes with the package of STS. Which is sufficient. But, sometimes you need to run mvn commands on terminal.
You should install maven manually. I’m on MAC. I installed maven through brew,
brew install maven
Now, I have to tell STS about my maven installation.
You can see some installed maven configurations on right side.
Click on add. It will ask for new installation path. My installation path was:
/usr/local/Cellar/maven/3.5.3/
On giving this path, STS gives me error:
target is not a supported maven home
The trick is to give path till libexec folder. So, the complete path is:
/usr/local/Cellar/maven/3.5.3/libexec
Thanks for reading…
This post some useful tips of using strings, and some issues while dealing with…
Goto your command terminal. Type: This will expose port: 27017 by default. You…
Thanks for reading.
Introduction Npm has a tool called: npm audit which reports if your packages or…
While running docker commands with some images, I started getting error: The…
While dealing with ELastic Search documents, you faced this issue while updating…
In this post, we will see some of the frequently used concepts/vocabulary in…
System design interview is pretty common these days, specially if you are having…
Introduction You are given an array of integers with size N, and a number K…
Graph Topological Sorting This is a well known problem in graph world…
Problem Statement Given a Binary tree, print out nodes in level order traversal…
Problem Statement Given an array nums of n integers and an integer target, are…