Maven | Gradle | Comment |
---|---|---|
compile | api if the dependency should be exposed to consumers. implementation if the dependency should not be exposed to consumers. |
|
provided | compileOnly | Maven provided is also available at runtime. Gradle compileOnly is limited to compile only. |
runtime | runtimeOnly | |
test | testImplementation |
Recent Comments