• spring 5.1.x 本地构建 build.gradle文件配置


    遇到的报错:

    1. Could not GET ‘https://repo.spring.io/plugins-release/io/spring/gradle/propdeps-plugin/0.0.9.RELEASE/propdeps-plugin-0.0.9.RELEASE.pom’. Received status code 401 from server:
    2. Could not find io.spring.gradle:propdeps-plugin:0.0.9.RELEASE.
    buildscript {
    //	repositories {
    //		gradlePluginPortal()
    //		maven { url "https://repo.spring.io/plugins-release" }
    //	}
    //	dependencies {
    //		classpath("io.spring.gradle:propdeps-plugin:0.0.9.RELEASE")
    //		classpath("org.asciidoctor:asciidoctorj-pdf:1.5.0-alpha.16")
    //	}
    	ext {
    		springBootVersion = '2.0.3.BUILD-SNAPSHOT'
    	}
    	repositories {
    		mavenCentral()
    		maven { url 'https://repo.spring.io/snapshot' }
    //        maven { url "https://repo.spring.io/plugins-release" }
            maven{ url "http://maven.aliyun.com/nexus/content/groups/public" }
            //阿里云新库
            maven { url "https://maven.aliyun.com/repository/central" }
            maven { url "https://maven.aliyun.com/repository/google" }
            maven { url "https://maven.aliyun.com/repository/gradle-plugin" }
            maven { url "https://maven.aliyun.com/repository/jcenter" }
            maven { url "https://maven.aliyun.com/repository/spring" }
            maven { url "https://maven.aliyun.com/repository/spring-plugin" }
            maven { url "https://maven.aliyun.com/repository/public" }
            maven { url "https://maven.aliyun.com/repository/releases" }
            maven { url "https://maven.aliyun.com/repository/snapshots" }
            maven { url "https://maven.aliyun.com/repository/grails-core" }
            maven { url "https://maven.aliyun.com/repository/mapr-public" }
            maven { url "http://repo.springsource.org/plugins-release" }
    	}
    	dependencies {
    		classpath("io.spring.gradle:propdeps-plugin:0.0.9.RELEASE")
    //        classpath("org.asciidoctor:asciidoctorj-pdf:1.5.0-alpha.16")
    		classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
    	}
    }
    
    // 3rd party plugin repositories can be configured in settings.gradle
    plugins {
    	id "io.spring.dependency-management" version "1.0.7.RELEASE" apply false
    	id "org.jetbrains.kotlin.jvm" version "1.2.71" apply false
    	id "org.jetbrains.dokka" version "0.9.18"
    	id "org.asciidoctor.convert" version "1.5.8"
    }
    
    ext {
    	linkHomepage = "https://spring.io/projects/spring-framework"
    	linkCi = "https://build.spring.io/browse/SPR"
    	linkIssue = "https://github.com/spring-projects/spring-framework/issues"
    	linkScmUrl = "https://github.com/spring-projects/spring-framework"
    	linkScmConnection = "scm:git:git://github.com/spring-projects/spring-framework.git"
    	linkScmDevConnection = "scm:git:ssh://git@github.com:spring-projects/spring-framework.git"
    
    	moduleProjects = subprojects.findAll {
    		!it.name.equals("spring-build-src") && !it.name.equals("spring-framework-bom")
    	}
    
    	aspectjVersion       = "1.9.6"
    	freemarkerVersion    = "2.3.28"
    	groovyVersion        = "2.5.9"
    	hsqldbVersion        = "2.4.1"
    	jackson2Version      = "2.9.9"
    	jettyVersion         = "9.4.31.v20200723"
    	junit5Version        = "5.3.2"
    	kotlinVersion        = "1.2.71"
    	log4jVersion         = "2.11.2"
    	nettyVersion         = "4.1.51.Final"
    	reactorVersion       = "Californium-SR23"
    	rxjavaVersion        = "1.3.8"
    	rxjavaAdapterVersion = "1.2.1"
    	rxjava2Version       = "2.2.19"
    	slf4jVersion         = "1.7.30"	  // spring-jcl + consistent 3rd party deps
    	tiles3Version        = "3.0.8"
    	tomcatVersion        = "9.0.37"
    	undertowVersion      = "2.0.32.Final"
    
    	gradleScriptDir = "${rootProject.projectDir}/gradle"
    	withoutJclOverSlf4j = {
    		exclude group: "org.slf4j", module: "jcl-over-slf4j"
    	}
    }
    
    configure(allprojects) { project ->
    	group = "org.springframework"
    	version = qualifyVersionIfNecessary(version)
    
    	apply plugin: "java"
    	apply plugin: "kotlin"
    	apply plugin: "checkstyle"
    	apply plugin: "propdeps"
    	apply plugin: "test-source-set-dependencies"
    	apply plugin: "io.spring.dependency-management"
    	apply from: "${gradleScriptDir}/ide.gradle"
    
    	dependencyManagement {
    		resolutionStrategy {
    			cacheChangingModulesFor 0, "seconds"
    		}
    		applyMavenExclusions = false
    		generatedPomCustomization {
    			enabled = false
    		}
    	}
    
    	configurations.all {
    		// Check for updates every build
    		resolutionStrategy.cacheChangingModulesFor 0, "seconds"
    
    		// Consistent slf4j version (e.g. clashes between slf4j versions)
    		resolutionStrategy.eachDependency { DependencyResolveDetails details ->
    			if (details.requested.group == "org.slf4j") {
    				details.useVersion slf4jVersion
    			}
    		}
    	}
    
    	def commonCompilerArgs =
    			["-Xlint:serial", "-Xlint:cast", "-Xlint:classfile", "-Xlint:dep-ann",
    			 "-Xlint:divzero", "-Xlint:empty", "-Xlint:finally", "-Xlint:overrides",
    			 "-Xlint:path", "-Xlint:processing", "-Xlint:static", "-Xlint:try", "-Xlint:-options"]
    
    	compileJava.options*.compilerArgs = commonCompilerArgs +
    			["-Xlint:varargs", "-Xlint:fallthrough", "-Xlint:rawtypes",
    			 "-Xlint:deprecation", "-Xlint:unchecked", "-Werror"]
    
    	compileTestJava.options*.compilerArgs = commonCompilerArgs +
    			["-Xlint:-varargs", "-Xlint:-fallthrough", "-Xlint:-rawtypes",
    			 "-Xlint:-deprecation", "-Xlint:-unchecked"]
    
    	compileJava {
    		sourceCompatibility = 1.8  // can be switched to 11 for testing
    		targetCompatibility = 1.8
    		options.encoding = "UTF-8"
    	}
    
    	compileTestJava {
    		sourceCompatibility = 1.8  // can be switched to 11 for testing
    		targetCompatibility = 1.8
    		options.encoding = "UTF-8"
    		options.compilerArgs += "-parameters"
    	}
    
    	compileKotlin {
    		kotlinOptions {
    			jvmTarget = "1.8"
    			freeCompilerArgs = ["-Xjsr305=strict"]
    			apiVersion = "1.1"
    			languageVersion = "1.1"
    		}
    	}
    
    	compileTestKotlin {
    		kotlinOptions {
    			jvmTarget = "1.8"
    			freeCompilerArgs = ["-Xjsr305=strict"]
    		}
    	}
    
    	test {
    		systemProperty("java.awt.headless", "true")
    		systemProperty("testGroups", project.properties.get("testGroups"))
    		systemProperty("io.netty.leakDetection.level", "paranoid")
    		scanForTestClasses = false
    		include(["**/*Tests.class", "**/*Test.class"])
    		// Since we set scanForTestClasses to false, we need to filter out inner
    		// classes with the "$" pattern; otherwise, using -Dtest.single=MyTests to
    		// run MyTests by itself will fail if MyTests contains any inner classes.
    		exclude(["**/Abstract*.class", '**/*$*'])
    	}
    
    	checkstyle {
    		toolVersion = "8.38"
    		configDir = rootProject.file("src/checkstyle")
    	}
    
    	repositories {
    		//本地仓库,地址是maven本地仓库路径
    //		mavenLocal()
    		//maven私服。此处设置为ali的旧库,地址是url
    		maven{ url "http://maven.aliyun.com/nexus/content/groups/public" }
    		//阿里云新库
    		maven { url "https://maven.aliyun.com/repository/central" }
    		maven { url "https://maven.aliyun.com/repository/google" }
    		maven { url "https://maven.aliyun.com/repository/gradle-plugin" }
    		maven { url "https://maven.aliyun.com/repository/jcenter" }
    		maven { url "https://maven.aliyun.com/repository/spring" }
    		maven { url "https://maven.aliyun.com/repository/spring-plugin" }
    		maven { url "https://maven.aliyun.com/repository/public" }
    		maven { url "https://maven.aliyun.com/repository/releases" }
    		maven { url "https://maven.aliyun.com/repository/snapshots" }
    		maven { url "https://maven.aliyun.com/repository/grails-core" }
    		maven { url "https://maven.aliyun.com/repository/mapr-public" }
            maven { url "http://repo.springsource.org/plugins-release" }
    
    	}
    
    	dependencies {
    		testCompile("junit:junit:4.12") {
    			exclude group: "org.hamcrest", module: "hamcrest-core"
    		}
    		testCompile("org.mockito:mockito-core:2.28.2") {
    			exclude group: "org.hamcrest", module: "hamcrest-core"
    		}
    		testCompile("com.nhaarman:mockito-kotlin:1.6.0") {
    			exclude module: "kotlin-stdlib"
    			exclude module: "kotlin-reflect"
    			exclude module: "mockito-core"
    		}
    		testCompile("org.hamcrest:hamcrest-all:1.3")
    		testRuntime("org.apache.logging.log4j:log4j-core:${log4jVersion}")
    		testRuntime("org.apache.logging.log4j:log4j-slf4j-impl:${log4jVersion}")
    		testRuntime("org.apache.logging.log4j:log4j-jul:${log4jVersion}")
    		// JSR-305 only used for non-required meta-annotations
    		compileOnly("com.google.code.findbugs:jsr305:3.0.2")
    		testCompileOnly("com.google.code.findbugs:jsr305:3.0.2")
    		checkstyle("io.spring.javaformat:spring-javaformat-checkstyle:0.0.7")
    	}
    
    	ext.javadocLinks = [
    		"https://docs.oracle.com/javase/8/docs/api/",
    		"https://docs.oracle.com/javaee/7/api/",
    		"https://docs.oracle.com/cd/E13222_01/wls/docs90/javadocs/",  // CommonJ
    		"https://www.ibm.com/support/knowledgecenter/SS7JFU_8.5.5/com.ibm.websphere.javadoc.doc/web/apidocs/",
    		"https://glassfish.java.net/nonav/docs/v3/api/",
    		"https://docs.jboss.org/jbossas/javadoc/4.0.5/connector/",
    		"https://docs.jboss.org/jbossas/javadoc/7.1.2.Final/",
    		"https://tiles.apache.org/tiles-request/apidocs/",
    		"https://tiles.apache.org/framework/apidocs/",
    		"https://www.eclipse.org/aspectj/doc/released/aspectj5rt-api/",
    		"https://www.ehcache.org/apidocs/2.10.4/",
    		"https://www.quartz-scheduler.org/api/2.3.0/",
    		"https://fasterxml.github.io/jackson-core/javadoc/2.9/",
    		"https://fasterxml.github.io/jackson-databind/javadoc/2.9/",
    		"https://fasterxml.github.io/jackson-dataformat-xml/javadoc/2.9/",
    		"https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/",
    		"https://junit.org/junit4/javadoc/4.12/",
    		"https://junit.org/junit5/docs/${junit5Version}/api/"
    	] as String[]
    }
    
    configure(subprojects - project(":spring-build-src")) { subproject ->
    	apply from: "${gradleScriptDir}/publish-maven.gradle"
    
    	jar {
    		manifest.attributes["Implementation-Title"] = subproject.name
    		manifest.attributes["Implementation-Version"] = subproject.version
    		manifest.attributes["Automatic-Module-Name"] = subproject.name.replace('-', '.')  // for Jigsaw
    		manifest.attributes["Created-By"] =
    				"${System.getProperty("java.version")} (${System.getProperty("java.specification.vendor")})"
    
    		from("${rootProject.projectDir}/src/docs/dist") {
    			include "license.txt"
    			include "notice.txt"
    			into "META-INF"
    			expand(copyright: new Date().format("yyyy"), version: project.version)
    		}
    	}
    
    	javadoc {
    		description = "Generates project-level javadoc for use in -javadoc jar"
    
    		options.encoding = "UTF-8"
    		options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
    		options.author = true
    		options.header = project.name
    		options.use = true
    		options.links(project.ext.javadocLinks)
    		options.addStringOption("Xdoclint:none", "-quiet")
    
    		// Suppress warnings due to cross-module @see and @link references.
    		// Note that global 'api' task does display all warnings.
    		logging.captureStandardError LogLevel.INFO
    		logging.captureStandardOutput LogLevel.INFO  // suppress "## warnings" message
    	}
    
    	task sourcesJar(type: Jar, dependsOn: classes) {
    		duplicatesStrategy = DuplicatesStrategy.EXCLUDE
    		classifier = "sources"
    		from sourceSets.main.allSource
    		// Don't include or exclude anything explicitly by default. See SPR-12085.
    	}
    
    	task javadocJar(type: Jar) {
    		classifier = "javadoc"
    		from javadoc
    	}
    
    	artifacts {
    		archives sourcesJar
    		archives javadocJar
    	}
    }
    
    configure(rootProject) {
    	description = "Spring Framework"
    
    	apply plugin: "groovy"
    	apply from: "${gradleScriptDir}/jdiff.gradle"
    	apply from: "${gradleScriptDir}/docs.gradle"
    
    	dependencyManagement {
    		imports {
    			mavenBom "io.projectreactor:reactor-bom:${reactorVersion}"
    		}
    	}
    
    	// Don't publish the default jar for the root project
    	configurations.archives.artifacts.clear()
    
    	dependencies {  // for integration tests
    		testCompile(project(":spring-aop"))
    		testCompile(project(":spring-beans"))
    		testCompile(project(":spring-context"))
    		testCompile(project(":spring-core"))
    		testCompile(project(":spring-expression"))
    		testCompile(project(":spring-jdbc"))
    		testCompile(project(":spring-orm"))
    		testCompile(project(":spring-test"))
    		testCompile(project(":spring-tx"))
    		testCompile(project(":spring-web"))
    		testCompile("javax.inject:javax.inject:1")
    		testCompile("javax.resource:javax.resource-api:1.7.1")
    		testCompile("javax.servlet:javax.servlet-api:3.1.0")
    		testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
    		testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
    		testCompile("org.hibernate:hibernate-core:5.1.17.Final")
    	}
    
    	artifacts {
    		archives docsZip
    		archives schemaZip
    		archives distZip
    	}
    
    	wrapper {
    		doLast() {
    			def gradleOpts = "-XX:MaxMetaspaceSize=1024m -Xmx1024m"
    			def gradleBatOpts = "$gradleOpts -XX:MaxHeapSize=256m"
    			File wrapperFile = file("gradlew")
    			wrapperFile.text = wrapperFile.text.replace("DEFAULT_JVM_OPTS=",
    					"GRADLE_OPTS=\"$gradleOpts \$GRADLE_OPTS\"\nDEFAULT_JVM_OPTS=")
    			File wrapperBatFile = file("gradlew.bat")
    			wrapperBatFile.text = wrapperBatFile.text.replace("set DEFAULT_JVM_OPTS=",
    					"set GRADLE_OPTS=$gradleBatOpts %GRADLE_OPTS%\nset DEFAULT_JVM_OPTS=")
    		}
    	}
    }
    
    /*
     * Support publication of artifacts versioned by topic branch.
     * CI builds supply `-P BRANCH_NAME=<TOPIC>` to gradle at build time.
     * If <TOPIC> starts with 'SPR-', change version
     *     from BUILD-SNAPSHOT => <TOPIC>-SNAPSHOT
     *     e.g. 3.2.1.BUILD-SNAPSHOT => 3.2.1.SPR-1234-SNAPSHOT
     */
    def qualifyVersionIfNecessary(version) {
    	if (rootProject.hasProperty("BRANCH_NAME")) {
    		def qualifier = rootProject.getProperty("BRANCH_NAME")
    		if (qualifier.startsWith("SPR-")) {
    			return version.replace("BUILD", qualifier)
    		}
    	}
    	return version
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
    • 340
    • 341
    • 342
    • 343
    • 344
    • 345
    • 346
    • 347
    • 348
    • 349
    • 350
    • 351
    • 352
    • 353
    • 354
    • 355
    • 356
    • 357
    • 358
    • 359
    • 360
    • 361
    • 362
    • 363
    • 364
    • 365
    • 366

    参考文章1
    参考文章2

  • 相关阅读:
    ts学习笔记
    17. 电话号码的字母组合
    【多目标优化求解】基于matlab非支配排序灰狼优化(NS-GWO)算法求解多目标优化问题【含Matlab源码 2015期】
    C语言中,“>>=”;“<<=”;“&=”;“|=”分别代表什么
    fopen/fwrite/fread 对UNICODE字符写入的总结
    idea项目设置鼠标右键点击文件夹通过IDEA打开
    数据库系统与应用复习——第四章数据库安全性与第五章数据库完整性
    [附源码]java毕业设计中小企业人力资源管理系统
    kerberos:介绍
    阿里P8架构师进阶心得:分布式数据库架构MyCat学习笔记送给你
  • 原文地址:https://blog.csdn.net/qq_43140890/article/details/133762501