Skip to main content

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.

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'
}