Sfoglia il codice sorgente

Update to Spring Boot 3.2.0

And fix a typo in the readme.
Jay Bryant 1 anno fa
parent
commit
126e8ed7a5
6 ha cambiato i file con 7 aggiunte e 51 eliminazioni
  1. 0 44
      Jenkinsfile
  2. 1 1
      README.adoc
  3. 2 2
      complete/build.gradle
  4. 1 1
      complete/pom.xml
  5. 2 2
      initial/build.gradle
  6. 1 1
      initial/pom.xml

+ 0 - 44
Jenkinsfile

@@ -1,44 +0,0 @@
-pipeline {
-	agent none
-
-	triggers {
-		pollSCM 'H/10 * * * *'
-	}
-
-	options {
-		disableConcurrentBuilds()
-		buildDiscarder(logRotator(numToKeepStr: '14'))
-	}
-
-	stages {
-		stage("test: baseline (jdk17)") {
-			agent {
-				docker {
-					image 'harbor-repo.vmware.com/dockerhub-proxy-cache/library/adoptopenjdk/openjdk17:latest'
-					args '-v $HOME/.m2:/tmp/jenkins-home/.m2'
-				}
-			}
-			options { timeout(time: 30, unit: 'MINUTES') }
-			steps {
-				sh 'test/run.sh'
-			}
-		}
-
-	}
-
-	post {
-		changed {
-			script {
-				slackSend(
-						color: (currentBuild.currentResult == 'SUCCESS') ? 'good' : 'danger',
-						channel: '#sagan-content',
-						message: "${currentBuild.fullDisplayName} - `${currentBuild.currentResult}`\n${env.BUILD_URL}")
-				emailext(
-						subject: "[${currentBuild.fullDisplayName}] ${currentBuild.currentResult}",
-						mimeType: 'text/html',
-						recipientProviders: [[$class: 'CulpritsRecipientProvider'], [$class: 'RequesterRecipientProvider']],
-						body: "<a href=\"${env.BUILD_URL}\">${currentBuild.fullDisplayName} is reported as ${currentBuild.currentResult}</a>")
-			}
-		}
-	}
-}

+ 1 - 1
README.adoc

@@ -18,7 +18,7 @@ http://en.wikipedia.org/wiki/Streaming_Text_Oriented_Messaging_Protocol[STOMP] m
 with Spring to create an interactive web application. STOMP is a subprotocol operating
 on top of the lower-level WebSocket.
 
-== What You Will build
+== What You Will Build
 
 You will build a server that accepts a message that carries a user's name. In response,
 the server will push a greeting into a queue to which the client is subscribed.

+ 2 - 2
complete/build.gradle

@@ -1,6 +1,6 @@
 plugins {
-	id 'org.springframework.boot' version '3.1.0'
-	id 'io.spring.dependency-management' version '1.1.0'
+	id 'org.springframework.boot' version '3.2.0'
+	id 'io.spring.dependency-management' version '1.1.4'
 	id 'java'
 }
 

+ 1 - 1
complete/pom.xml

@@ -5,7 +5,7 @@
 	<parent>
 		<groupId>org.springframework.boot</groupId>
 		<artifactId>spring-boot-starter-parent</artifactId>
-		<version>3.1.0</version>
+		<version>3.2.0</version>
 		<relativePath/> <!-- lookup parent from repository -->
 	</parent>
 	<groupId>com.example</groupId>

+ 2 - 2
initial/build.gradle

@@ -1,6 +1,6 @@
 plugins {
-	id 'org.springframework.boot' version '3.1.0'
-	id 'io.spring.dependency-management' version '1.1.0'
+	id 'org.springframework.boot' version '3.2.0'
+	id 'io.spring.dependency-management' version '1.1.4'
 	id 'java'
 }
 

+ 1 - 1
initial/pom.xml

@@ -5,7 +5,7 @@
 	<parent>
 		<groupId>org.springframework.boot</groupId>
 		<artifactId>spring-boot-starter-parent</artifactId>
-		<version>3.1.0</version>
+		<version>3.2.0</version>
 		<relativePath/> <!-- lookup parent from repository -->
 	</parent>
 	<groupId>com.example</groupId>