build.gradle 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. buildscript {
  2. dependencies {
  3. classpath "io.spring.javaformat:spring-javaformat-gradle-plugin:$springJavaformatVersion"
  4. classpath 'io.spring.nohttp:nohttp-gradle:0.0.8'
  5. classpath "io.freefair.gradle:aspectj-plugin:5.3.3.3"
  6. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
  7. classpath "com.netflix.nebula:nebula-project-plugin:8.0.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: 'io.spring.convention.root'
  17. apply plugin: 'org.jetbrains.kotlin.jvm'
  18. apply plugin: 'org.springframework.security.update-dependencies'
  19. apply plugin: 'org.springframework.security.sagan'
  20. apply plugin: 'org.springframework.github.milestone'
  21. apply plugin: 'org.springframework.github.changelog'
  22. group = 'org.springframework.security'
  23. description = 'Spring Security'
  24. ext.snapshotBuild = version.contains("SNAPSHOT")
  25. ext.releaseBuild = version.contains("SNAPSHOT")
  26. ext.milestoneBuild = !(snapshotBuild || releaseBuild)
  27. repositories {
  28. mavenCentral()
  29. }
  30. tasks.named("saganCreateRelease") {
  31. referenceDocUrl = "https://docs.spring.io/spring-security/site/docs/{version}/reference/html5/"
  32. apiDocUrl = "https://docs.spring.io/spring-security/site/docs/{version}/api/"
  33. }
  34. tasks.named("gitHubCheckMilestoneHasNoOpenIssues") {
  35. repository {
  36. owner = "spring-projects"
  37. name = "spring-security"
  38. }
  39. }
  40. tasks.named("updateDependencies") {
  41. // we aren't Gradle 7 compatible yet
  42. checkForGradleUpdate = false
  43. }
  44. updateDependenciesSettings {
  45. gitHub {
  46. organization = "spring-projects"
  47. repository = "spring-security"
  48. }
  49. addFiles({
  50. return [
  51. project.file("buildSrc/src/main/java/io/spring/gradle/convention/AsciidoctorConventionPlugin.java"),
  52. project.file("buildSrc/src/main/groovy/io/spring/gradle/convention/CheckstylePlugin.groovy")
  53. ]
  54. })
  55. dependencyExcludes {
  56. majorVersionBump()
  57. minorVersionBump()
  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. }
  99. }
  100. allprojects {
  101. if (!['spring-security-bom', 'spring-security-docs'].contains(project.name)) {
  102. apply plugin: 'io.spring.javaformat'
  103. apply plugin: 'checkstyle'
  104. pluginManager.withPlugin("io.spring.convention.checkstyle", { plugin ->
  105. configure(plugin) {
  106. dependencies {
  107. checkstyle "io.spring.javaformat:spring-javaformat-checkstyle:$springJavaformatVersion"
  108. }
  109. checkstyle {
  110. toolVersion = '8.34'
  111. }
  112. }
  113. })
  114. if (project.name.contains('sample')) {
  115. tasks.whenTaskAdded { task ->
  116. if (task.name.contains('format') || task.name.contains('checkFormat') || task.name.contains("checkstyle")) {
  117. task.enabled = false
  118. }
  119. }
  120. }
  121. }
  122. }
  123. if (hasProperty('buildScan')) {
  124. buildScan {
  125. termsOfServiceUrl = 'https://gradle.com/terms-of-service'
  126. termsOfServiceAgree = 'yes'
  127. }
  128. }
  129. nohttp {
  130. allowlistFile = project.file("etc/nohttp/allowlist.lines")
  131. source.exclude "buildSrc/build/**"
  132. }