Posts

Showing posts from August, 2018

Intellij Idea Gradle project

Image
This is the continuation fo the post Introduction to Gradle . Sometime back, I wrote a blog How To: GitHub projects in Spring Tool Suite . At that time, my development environment is mostly Windows and Linux and favorite Java IDE was Eclipse becasue heavy use of Wizards. Later Intellij Idea came with better wizards. Not only that, the quality of the Idea deviated me from the Eclipse. My current environment is macOS. Most of the tools I install using homebrew : sublime, pipenv and so on. Another great installation tool is SDKMAN which I used to install the JDK, gradle and maven. As a Java Developer I need to create a gradle project in the Intellij Idea. But I want to avoid all the fancy wizards and open the project direcly in the Idea. In this example I use Gradle Idea Plugin . Here is my workflow as shown in the diagram,  It is necessary to create directories for the source sets: Java mkdir -p src/main/java/<package> mkdir -p src/main/resources/<package> Test...