build.gradle 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. buildscript {
  2. dependencies {
  3. classpath "io.spring.javaformat:spring-javaformat-gradle-plugin:$springJavaformatVersion"
  4. classpath 'io.spring.nohttp:nohttp-gradle:0.0.10'
  5. classpath "io.freefair.gradle:aspectj-plugin:6.3.0"
  6. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
  7. classpath "com.netflix.nebula:nebula-project-plugin:8.2.0"
  8. }
  9. repositories {
  10. maven { url 'https://repo.spring.io/plugins-snapshot' }
  11. maven { url 'https://plugins.gradle.org/m2/' }
  12. }
  13. }
  14. apply plugin: 'io.spring.nohttp'
  15. apply plugin: 'locks'
  16. apply plugin: 's101'
  17. apply plugin: 'io.spring.convention.root'
  18. apply plugin: 'io.spring.convention.include-check-remote'
  19. apply plugin: 'org.jetbrains.kotlin.jvm'
  20. apply plugin: 'org.springframework.security.update-dependencies'
  21. apply plugin: 'org.springframework.security.sagan'
  22. apply plugin: 'org.springframework.github.milestone'
  23. apply plugin: 'org.springframework.github.changelog'
  24. group = 'org.springframework.security'
  25. description = 'Spring Security'
  26. ext.snapshotBuild = version.contains("SNAPSHOT")
  27. ext.releaseBuild = version.contains("SNAPSHOT")
  28. ext.milestoneBuild = !(snapshotBuild || releaseBuild)
  29. repositories {
  30. mavenCentral()
  31. }
  32. tasks.named("saganCreateRelease") {
  33. referenceDocUrl = "https://docs.spring.io/spring-security/site/docs/{version}/reference/html5/"
  34. apiDocUrl = "https://docs.spring.io/spring-security/site/docs/{version}/api/"
  35. }
  36. tasks.named("gitHubCheckMilestoneHasNoOpenIssues") {
  37. repository {
  38. owner = "spring-projects"
  39. name = "spring-security"
  40. }
  41. }
  42. tasks.named("updateDependencies") {
  43. // we aren't Gradle 7 compatible yet
  44. checkForGradleUpdate = false
  45. }
  46. updateDependenciesSettings {
  47. gitHub {
  48. organization = "spring-projects"
  49. repository = "spring-security"
  50. }
  51. addFiles({
  52. return [
  53. project.file("buildSrc/src/main/groovy/io/spring/gradle/convention/CheckstylePlugin.groovy")
  54. ]
  55. })
  56. dependencyExcludes {
  57. majorVersionBump()
  58. alphaBetaVersions()
  59. releaseCandidatesVersions()
  60. milestoneVersions()
  61. snapshotVersions()
  62. addRule { components ->
  63. components.withModule("commons-codec:commons-codec") { selection ->
  64. ModuleComponentIdentifier candidate = selection.getCandidate();
  65. if (!candidate.getVersion().equals(selection.getCurrentVersion())) {
  66. selection.reject("commons-codec updates break saml tests");
  67. }
  68. }
  69. components.withModule("org.python:jython") { selection ->
  70. ModuleComponentIdentifier candidate = selection.getCandidate();
  71. if (!candidate.getVersion().equals(selection.getCurrentVersion())) {
  72. selection.reject("jython updates break integration tests");
  73. }
  74. }
  75. components.withModule("com.nimbusds:nimbus-jose-jwt") { selection ->
  76. ModuleComponentIdentifier candidate = selection.getCandidate();
  77. if (!candidate.getVersion().equals(selection.getCurrentVersion())) {
  78. selection.reject("nimbus-jose-jwt gets updated when oauth2-oidc-sdk is updated to ensure consistency");
  79. }
  80. }
  81. components.all { selection ->
  82. ModuleComponentIdentifier candidate = selection.getCandidate();
  83. // Do not compare version due to multiple versions existing
  84. // will cause opensaml 3.x to be updated to 4.x
  85. if (candidate.getGroup().equals("org.opensaml")) {
  86. selection.reject("org.opensaml maintains two different versions, so it must be updated manually");
  87. }
  88. }
  89. }
  90. }
  91. }
  92. subprojects {
  93. plugins.withType(JavaPlugin) {
  94. project.sourceCompatibility='1.8'
  95. }
  96. tasks.withType(JavaCompile) {
  97. options.encoding = "UTF-8"
  98. options.compilerArgs.add("-parameters")
  99. }
  100. }
  101. allprojects {
  102. if (!['spring-security-bom', 'spring-security-docs'].contains(project.name)) {
  103. apply plugin: 'io.spring.javaformat'
  104. apply plugin: 'checkstyle'
  105. pluginManager.withPlugin("io.spring.convention.checkstyle", { plugin ->
  106. configure(plugin) {
  107. dependencies {
  108. checkstyle "io.spring.javaformat:spring-javaformat-checkstyle:$springJavaformatVersion"
  109. }
  110. checkstyle {
  111. toolVersion = '8.34'
  112. }
  113. }
  114. })
  115. if (project.name.contains('sample')) {
  116. tasks.whenTaskAdded { task ->
  117. if (task.name.contains('format') || task.name.contains('checkFormat') || task.name.contains("checkstyle")) {
  118. task.enabled = false
  119. }
  120. }
  121. }
  122. }
  123. }
  124. if (hasProperty('buildScan')) {
  125. buildScan {
  126. termsOfServiceUrl = 'https://gradle.com/terms-of-service'
  127. termsOfServiceAgree = 'yes'
  128. }
  129. }
  130. nohttp {
  131. allowlistFile = project.file("etc/nohttp/allowlist.lines")
  132. source.exclude "buildSrc/build/**"
  133. }
  134. tasks.register('checkSamples') {
  135. includeCheckRemote {
  136. repository = 'spring-projects/spring-security-samples'
  137. ref = samplesBranch
  138. }
  139. dependsOn checkRemote
  140. }
  141. s101 {
  142. configurationDirectory = project.file("etc/s101")
  143. }