In IntelliJ you have this specific window to perform a task... Creating a new Gradle module (view picture):

https://i.imgur.com/u0UB87m.png
It should give this result:

https://i.imgur.com/y0KAagk.png
However I have no idea on how to do this using the Linux command line. I tried to search it on Google (result) but they're just editing files there and not running a command...
This is my current file structure (using gradle init):
groeiproject/
├── build.gradle
├── gradle
│ └── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── README.md
├── settings.gradle
└── src
├── main
│ └── java
│ └── Library.java
└── test
└── java
└── LibraryTest.java
7 directories, 9 files
How can I add those sub-projects/modules (called 1_herhaling in the pictures) using the Gradle command in the Linux command line interface?
Thanks!

New Topic/Question
Reply



MultiQuote

|