Zależności między projektami
Zarządzaj zależnościami między podprojektami i zapewnij prawidłową kolejność kompilacji oraz rozwiązywanie artefaktów.
Zależności między projektami to bezpłatna lekcja Groovy & Gradle: JVM Automation and Build Engineering na CoddyKit. To lekcja 3 z 4. Możesz przeczytać całą lekcję poniżej za darmo — a potem ćwiczyć ją interaktywnie w przeglądarce z wbudowanym edytorem kodu i tutorem AI dostępnym 24/7. To część ścieżki edukacyjnej Groovy & Gradle: JVM Automation and Build Engineering, a Twój postęp synchronizuje się między webem a aplikacją CoddyKit. Kurs Groovy & Gradle: JVM Automation and Build Engineering zawiera 4 lekcji w sumie.
Części tej lekcji nie zostały jeszcze przetłumaczone i są wyświetlane po angielsku.
Introduction to Project Dependencies
In a multi-project Gradle build, different subprojects often need to work together. One subproject might produce a library that another subproject uses.
This is where inter-project dependencies come in! They define how subprojects rely on each other, ensuring the correct build order and artifact sharing.
- Inter-project dependencies: How one subproject uses code or outputs from another subproject.
- Crucial for modular applications.
Declaring a Basic Dependency
Declaring that one subproject depends on another is straightforward in Gradle. You use the project() function within your dependencies block.
For example, if your app subproject needs code from your lib subproject, you'd add this to app/build.gradle:
// app/build.gradle
dependencies {
implementation project(':lib')
}The :lib part refers to the path of the lib subproject relative to the root.
Setting Up Our Example
Let's imagine a simple multi-project setup. We'll have a root project, an app subproject, and a lib subproject.
Your settings.gradle would look like this:
// settings.gradle
rootProject.name = 'my-multi-project'
include 'app', 'lib'This tells Gradle about our two subprojects, app and lib.
`implementation` vs. `api`
When declaring inter-project dependencies, you'll typically use configurations like implementation or api.
implementation: The most common choice. The dependency is used internally by the subproject and is not exposed to consumers of that subproject.api: Exposes the dependency to consumers. Ifappdepends onlibviaapi, andotherAppdepends onapp, thenotherAppwill also seelib's API.
For internal use between subprojects, implementation is generally preferred for better encapsulation and faster builds.
The Library Subproject (`lib`)
First, let's create a simple class in our lib subproject that the app subproject will use. This class will provide a basic utility.
Inside lib/src/main/groovy/com/coddykit/LibUtils.groovy:
package com.coddykit
class LibUtils {
static String getGreeting() {
return "Hello from LibUtils!"
}
}App Subproject Using `lib`'s Code
Now, let's make our app subproject use the LibUtils class from our lib subproject. Remember, we declared implementation project(':lib') in app/build.gradle.
Try running this example:
package com.coddykit
import com.coddykit.LibUtils
class AppMain {
static void main(String[] args) {
String message = LibUtils.getGreeting()
System.out.println(message)
}
}Automatic Build Order
One of the biggest advantages of declaring inter-project dependencies is that Gradle automatically figures out the correct build order.
- If
appdepends onlib, Gradle ensures thatlibis compiled and its artifacts are available beforeappstarts its compilation. - This saves you from manually managing build sequences, especially in complex multi-project setups.
When you run gradle build from the root, Gradle will build lib first, then app.
Understanding Transitive Effects
What if your lib subproject itself depends on another subproject, say common?
// lib/build.gradle
dependencies {
implementation project(':common')
}
// app/build.gradle
dependencies {
implementation project(':lib')
}If app depends on lib, and lib depends on common, Gradle will ensure that common is also built and its artifacts are available transitively to app's classpath for compilation, but not necessarily for its API if implementation is used for lib.
Maintain Clean Dependencies
To keep your multi-project builds manageable and efficient, follow these best practices:
- Minimal Dependencies: Only declare dependencies on subprojects you truly need.
- Use
implementation: Preferimplementationoverapifor internal subproject dependencies to improve encapsulation and reduce rebuilds. - Clear Boundaries: Design your subprojects with clear responsibilities to avoid circular dependencies.
- Avoid Deep Paths: Keep subproject paths concise (e.g.,
:module:submoduleis fine, but avoid excessively long paths).
Dependency Declaration Check
You have a multi-project build with a web subproject and a core subproject. The web subproject needs to use classes from the core subproject for its internal logic, but not expose core's API to any further consumers of web.
Inter-Project Dependencies Recap
Great job! In this lesson, you learned how to manage dependencies between subprojects in a Gradle multi-project build.
- We covered how to declare dependencies using
project(':subproject'). - We discussed the importance of
implementationfor internal use. - You saw how Gradle automatically handles build order.
- We explored best practices for clean dependency management.
Mastering inter-project dependencies is key to building large, modular applications efficiently with Gradle!
Często zadawane pytania
Czy lekcja „Zależności między projektami” jest bezpłatna?
Tak — pełny tekst „Zależności między projektami” jest dostępny za darmo tutaj w sieci. Aby ćwiczyć ją interaktywnie (wbudowany edytor kodu i tutor AI dostępny 24/7) i odblokować resztę kursu Groovy & Gradle: JVM Automation and Build Engineering, przejdź na CoddyKit PRO. Kurs Groovy & Gradle: JVM Automation and Build Engineering zawiera 4 lekcji w sumie.
Co nauczysz się w „Zależności między projektami”?
Zarządzaj zależnościami między podprojektami i zapewnij prawidłową kolejność kompilacji oraz rozwiązywanie artefaktów. Ćwiczysz Groovy & Gradle: JVM Automation and Build Engineering z praktycznym kodem, który uruchamiasz bezpośrednio w przeglądarce, a tutor AI dostępny 24/7 odpowiada na Twoje pytania podczas pracy nad lekcją.
Czy potrzebuję doświadczenia, aby zacząć Groovy & Gradle: JVM Automation and Build Engineering?
Nie wymagamy żadnego doświadczenia. Groovy & Gradle: JVM Automation and Build Engineering w CoddyKit jest strukturyzowany dla początkujących i zaawansowanych użytkowników, więc możesz zacząć tutaj lub od początku i uczyć się w swoim tempie. To lekcja 3 z 4.
Ile czasu zajmuje lekcja „Zależności między projektami”?
Większość lekcji CoddyKit trwa około 5–10 minut. Każda lekcja to mały, interaktywny krok, dzięki czemu robisz systematyczne postępy i zawsze wracasz dokładnie do tego samego miejsca — na webie i w aplikacji.
Czy mogę pisać i uruchamiać kod w tej lekcji Groovy & Gradle: JVM Automation and Build Engineering?
Tak. Każda lekcja Groovy & Gradle: JVM Automation and Build Engineering zawiera wbudowany edytor kodu, więc piszesz i uruchamiasz prawdziwy kod bezpośrednio w przeglądarce i od razu otrzymujesz sprzężenie zwrotne od AI — bez konfiguracji na komputerze.
Wszystkie lekcje w tym kursie
- Struktura projektu monorepo
- Podprojekty i konfiguracje
- Zależności między projektami
- Kompilacje złożone i kompozycja kompilacji