Tegral DI dependencies
Tegral DI, being a platform dependency, works independently of other Tegral libraries.
Adding Tegral DI
You can add Tegral DI to your project via Gradle or Maven. Replace VERSION
with the version of Tegral DI you want to use.
- Gradle (Groovy)
- Gradle (Kotlin)
- Maven
With Tegral Catalog
dependencies {
implementation tegral.di.core
testImplementation tegral.di.test
}
Without Tegral Catalog
dependencies {
implementation 'guru.zoroark.tegral:tegral-di-core:VERSION'
testImplementation 'guru.zoroark.tegral:tegral-di-test:VERSION'
}
With Tegral Catalog
dependencies {
implementation(tegral.di.core)
testImplementation(tegral.di.test)
}
Without Tegral Catalog
dependencies {
implementation("guru.zoroark.tegral:tegral-di-core:VERSION")
testImplementation("guru.zoroark.tegral:tegral-di-test:VERSION")
}
<!-- Add these to your dependencies -->
<dependency>
<groupId>guru.zoroark.tegral</groupId>
<artifactId>tegral-di-text</artifactId>
<version>VERSION</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>guru.zoroark.tegral</groupId>
<artifactId>tegral-di-test</artifactId>
<version>VERSION</version>
</dependency>