File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,6 @@ configure(allprojects) { project ->
77
77
78
78
repositories {
79
79
maven { url " http://repo.spring.io/libs-release" }
80
- maven { url " http://repo.spring.io/milestone" } // for AspectJ 1.8.0.RC2
81
80
maven { url " http://repo.spring.io/snapshot" } // temporarily until Reactor 1.1.0.RC1
82
81
}
83
82
@@ -865,6 +864,7 @@ project("spring-test") {
865
864
866
865
task testNG(type : Test ) {
867
866
useTestNG()
867
+ scanForTestClasses = false
868
868
include([" **/testng/**/*Tests.class" , " **/testng/**/*Test.class" ])
869
869
// Show STD_OUT & STD_ERR of the test JVM(s) on the console:
870
870
// testLogging.showStandardStreams = true
@@ -891,8 +891,8 @@ project("spring-aspects") {
891
891
892
892
dependencies {
893
893
aspects(project(" :spring-orm" ))
894
- ajc(" org.aspectj:aspectjtools:1.8.0.RC2 " ) // needed for ajc on JDK 8 only
895
- rt(" org.aspectj:aspectjrt:1.8.0.RC2 " ) // needed for ajc on JDK 8 only
894
+ ajc(" org.aspectj:aspectjtools:1.8.0" ) // needed for ajc on JDK 8 only
895
+ rt(" org.aspectj:aspectjrt:1.8.0" ) // needed for ajc on JDK 8 only
896
896
compile(" org.aspectj:aspectjweaver:${ aspectjVersion} " ) // exposing regular AspectJ version to users
897
897
provided(" org.eclipse.persistence:javax.persistence:2.0.0" )
898
898
optional(project(" :spring-aop" )) // for @Async support
You can’t perform that action at this time.
0 commit comments