Pārlūkot izejas kodu

Merge pull request #4319 from rwinch/tests-configuration

Build Leverages tests-configuration plugin
Rob Winch 8 gadi atpakaļ
vecāks
revīzija
a199819acb
2 mainītis faili ar 1 papildinājumiem un 21 dzēšanām
  1. 1 1
      .travis.yml
  2. 0 20
      core/spring-security-core.gradle

+ 1 - 1
.travis.yml

@@ -13,4 +13,4 @@ cache:
     - $HOME/.gradle/caches/
     - $HOME/.gradle/wrapper/
 
-script: ./gradlew build
+script: ./gradlew build --refresh-dependencies --no-daemon

+ 0 - 20
core/spring-security-core.gradle

@@ -3,9 +3,6 @@ apply plugin: 'io.spring.convention.spring-module'
 def includeProject = project(':spring-security-crypto')
 
 configurations {
-	tests
-	published.extendsFrom tests, archives
-
 	included
 	compile.extendsFrom included
 }
@@ -49,20 +46,3 @@ configure(project.tasks.withType(Test)) {
 	systemProperties['springSecurityVersion'] = version
 	systemProperties['springVersion'] = project.dependencyManagement.managedVersions['org.springframework:spring-core']
 }
-
-task testJar(type: Jar) {
-	classifier = 'tests'
-	from sourceSets.test.output
-}
-
-artifacts {
-	tests testJar
-}
-
-uploadPublished {
-	// maven deployer configuration
-}
-
-install {
-	configuration = configurations.published
-}