Skip to content

Commit f73f213

Browse files
committed
Remove DependencySetPlugin
Closes gh-10070
1 parent 01af787 commit f73f213

File tree

40 files changed

+233
-907
lines changed

40 files changed

+233
-907
lines changed

acl/spring-security-acl.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,15 @@ dependencies {
1111

1212
optional 'net.sf.ehcache:ehcache'
1313

14+
testImplementation "org.assertj:assertj-core"
15+
testImplementation "org.junit.jupiter:junit-jupiter-api"
16+
testImplementation "org.junit.jupiter:junit-jupiter-params"
17+
testImplementation "org.junit.jupiter:junit-jupiter-engine"
18+
testImplementation "org.mockito:mockito-core"
19+
testImplementation "org.mockito:mockito-junit-jupiter"
1420
testImplementation 'org.springframework:spring-beans'
1521
testImplementation 'org.springframework:spring-context-support'
16-
testImplementation 'org.springframework:spring-test'
22+
testImplementation "org.springframework:spring-test"
1723

1824
testRuntimeOnly 'org.hsqldb:hsqldb'
1925
}

aspects/spring-security-aspects.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ dependencies {
1010
api 'org.springframework:spring-core'
1111

1212
testImplementation 'org.springframework:spring-aop'
13+
testImplementation "org.assertj:assertj-core"
14+
testImplementation "org.junit.jupiter:junit-jupiter-api"
15+
testImplementation "org.junit.jupiter:junit-jupiter-params"
16+
testImplementation "org.junit.jupiter:junit-jupiter-engine"
17+
testImplementation "org.mockito:mockito-core"
18+
testImplementation "org.mockito:mockito-junit-jupiter"
19+
testImplementation "org.springframework:spring-test"
1320
testAspect sourceSets.main.output
1421
}
1522

buildSrc/src/main/groovy/io/spring/gradle/convention/AbstractSpringJavaPlugin.groovy

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ public abstract class AbstractSpringJavaPlugin implements Plugin<Project> {
5757
}
5858
pluginManager.apply("io.spring.convention.tests-configuration");
5959
pluginManager.apply("io.spring.convention.integration-test");
60-
pluginManager.apply("io.spring.convention.dependency-set");
6160
pluginManager.apply("io.spring.convention.javadoc-options");
6261
pluginManager.apply("io.spring.convention.checkstyle");
6362
pluginManager.apply(CopyPropertiesPlugin);

buildSrc/src/main/groovy/io/spring/gradle/convention/DependencySetPlugin.groovy

Lines changed: 0 additions & 107 deletions
This file was deleted.

buildSrc/src/main/resources/META-INF/gradle-plugins/io.spring.convention.dependency-set.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

buildSrc/src/test/java/io/spring/gradle/convention/DependencySetPluginITest.java

Lines changed: 0 additions & 31 deletions
This file was deleted.

buildSrc/src/test/java/io/spring/gradle/convention/ShowcaseITest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package io.spring.gradle.convention;
22

33
import io.spring.gradle.TestKit;
4-
import org.codehaus.groovy.runtime.ResourceGroovyMethods;
54
import org.gradle.testkit.runner.BuildResult;
65
import org.gradle.testkit.runner.TaskOutcome;
76
import org.junit.jupiter.api.BeforeEach;

buildSrc/src/test/resources/samples/dependencyset/build.gradle

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)