Does AGP provide dependencies? #2729
Answered
by
baev
wazzeps
asked this question in
Questions & Support
-
Beta Was this translation helpful? Give feedback.
Answered by
baev
Sep 13, 2024
Replies: 1 comment
-
The Allure Gradle plugin can configure dependencies for you automatically based on the dependencies it detects in your project. For example, in case of AspectJ can be configured automatically as well: allure {
adapter {
aspectjVersion.set("1.9.22.1")
aspectjWeaver.set(true)
}
} for more configuration options please see https://github.com/allure-framework/allure-gradle |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
wazzeps
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The Allure Gradle plugin can configure dependencies for you automatically based on the dependencies it detects in your project. For example, in case of
testng
dependency present, it will automatically addallure-testng
dependency and so on.AspectJ can be configured automatically as well:
for more configuration options please see https://github.com/allure-framework/allure-gradle