In this tutorial, we will take a look at how to create a Multi-Project in IntelliJ,
Step 1: Open IntelliJ IDE
Step 2: Menu: File -> New -> Project...
Make sure you choose Gradle Java Project, we will create a project with the name multi-proj-demo


Step 3: Menu: File -> New -> Module...
Again make sure you select Gradle and Java Project, we will call this module as utils,
Thats it, now you have a muti-project Gradle Java Project,
setting.gradlerootProject.name = 'multi-proj-demo'
include 'utils'
build.gradle
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
useJUnitPlatform()
}
Build
> Task :compileJava NO-SOURCE
> Task :processResources NO-SOURCE
> Task :classes UP-TO-DATE
> Task :compileTestJava NO-SOURCE
> Task :processTestResources NO-SOURCE
> Task :testClasses UP-TO-DATE
> Task :utils:compileJava
> Task :utils:processResources NO-SOURCE
> Task :utils:classes
> Task :utils:compileTestJava NO-SOURCE
> Task :utils:processTestResources NO-SOURCE
> Task :utils:testClasses UP-TO-DATE
More Posts related to Gradle,
- Task is ambiguous in root project gradle-examples. Candidates are: myTask1, myTask2
- How to create Gradle Multi-Project in IntelliJ
- Find installed Gradle version command
- Adding Jackson dependency to Java Gradle Project
- Gradle FAILURE: Build failed with an exception - Task not found in root project
- Create a Gradle Java Project in VS Code
- Generate Project Dependency tree using Gradle Command
- Fix: Spring Boot + IntelliJ + Gradle : Unsupported class file major version 64 Error
- Fix: Unsupported Java. Your build is currently configured to use Java 17.0.5 and Gradle 7.1.
- Run IntelliJ Java main method without Gradle build
- Fix: Deprecated Gradle features were used in this build, making it incompatible with Gradle
- Installing Gradle on macOS - Gradle Tutorial
- Fix: Invalid Gradle JDK configuration found. Could not find the required JavaSDK
- How to Clear Gradle Cache on Mac
- How to run Gradle build in offline mode
- Install Gradle VS Code for Java Projects
- How to add maven central repository in build.gradle
More Posts:
- Unable to load VM from snapshot. The snapshot has been saved for a different hardware configuration - Android
- How to shuffle lines randomly in Sublime Text - Sublime-Text
- Fix: This account is currently not available. (Linux SSH) - Linux
- Calculate Area of Square - C-Program
- [Fix] Minecraft Error: A JNI error has occurred, please check your installation and try again - HowTos
- Java 8 Supplier Functional Interface Examples - Java
- Read and Parse XML file using Java DOM Parser [Java Tutorial] - Java
- Java -Day of the week using Java 8 DayOfWeek Enum - Java