Skip to content

Commit

Permalink
Added gradle dependency scopes for ear plugin (#4095)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenson3210 authored Mar 14, 2024
1 parent c88fe60 commit e32535e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions rewrite-gradle/src/main/groovy/RewriteGradleProject.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ interface DependencyHandlerSpec extends DependencyHandler {
Dependency testRuntime(Object dependencyNotation, @DelegatesTo(strategy=Closure.DELEGATE_ONLY, value= ExternalDependency) Closure closure)
Dependency testRuntimeOnly(Object... dependencyNotation)
Dependency testRuntimeOnly(Object dependencyNotation, @DelegatesTo(strategy=Closure.DELEGATE_ONLY, value= ExternalDependency) Closure closure)
Dependency deploy(Object... dependencyNotation)
Dependency deploy(Object dependencyNotation, @DelegatesTo(strategy=Closure.DELEGATE_ONLY, value= ExternalDependency) Closure closure)
Dependency earlib(Object... dependencyNotation)
Dependency earlib(Object dependencyNotation, @DelegatesTo(strategy=Closure.DELEGATE_ONLY, value= ExternalDependency) Closure closure)

void constraints(Action<? super DependencyConstraintHandler> configureAction)
}
Expand Down

0 comments on commit e32535e

Please sign in to comment.