Drupal 8 Comment module - How to configure comments module from ugly to beautiful - Theming comments module
Introduction Drupal provides a powerful comment module, which comes as a part of…
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…
Introduction Drupal provides a powerful comment module, which comes as a part of…
Introduction In most of cases, you are not pulling images from docker hub public…
This is regarding the timeit implementation in python. The basic requirement…
Introduction Javascript is not a strict type language. We can use a variable to…
Introduction In a Spring boot app, we tend to use annotation, so that Spring…
Note: I have public URLs of these images, which I want to save. return…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…