Skip to content

Commit

Permalink
Gradle Plugin: remove excluding slf4j-simple in all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed Jan 27, 2024
1 parent f515116 commit e1178fb
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,6 @@ class GrailsGradlePlugin extends GroovyPlugin {
grailsVersion = resolveGrailsVersion(project)
grailsAppDir = SourceSets.resolveGrailsAppDir(project)

excludeDependencies(project)

configureProfile(project)

applyDefaultPlugins(project)
Expand Down Expand Up @@ -163,12 +161,6 @@ class GrailsGradlePlugin extends GroovyPlugin {
configurePathingJar(project)
}

protected void excludeDependencies(Project project) {
project.configurations.all({ Configuration configuration ->
configuration.exclude group: 'org.slf4j', module: 'slf4j-simple'
})
}

protected void configureProfile(Project project) {
if (project.configurations.findByName(PROFILE_CONFIGURATION) == null) {
def profileConfiguration = project.configurations.create(PROFILE_CONFIGURATION)
Expand Down

0 comments on commit e1178fb

Please sign in to comment.