This repository was archived by the owner on Oct 30, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 11 files changed +39
-33
lines changed
java/org/netresearch/amqblobspring
resources/META-INF/spring
test/java/org/netresearch/amqblobspring Expand file tree Collapse file tree 11 files changed +39
-33
lines changed Original file line number Diff line number Diff line change 11plugins {
2- id ' org.springframework.boot' version ' 2.7.18 '
2+ id ' org.springframework.boot' version ' 3.5.7 '
33 id ' java'
44 id ' maven-publish'
55}
66
77apply plugin : ' io.spring.dependency-management'
88
99java {
10- sourceCompatibility = JavaVersion . VERSION_11
11- targetCompatibility = JavaVersion . VERSION_11
10+ sourceCompatibility = JavaVersion . VERSION_17
11+ targetCompatibility = JavaVersion . VERSION_17
1212}
1313
1414repositories {
@@ -18,10 +18,10 @@ repositories {
1818dependencies {
1919 implementation ' org.springframework.boot:spring-boot-starter'
2020 implementation ' org.springframework.boot:spring-boot-starter-web'
21- implementation ' org.apache.activemq:activemq-client:5.19.1 '
21+ implementation ' org.apache.activemq:activemq-client:6.1.8 '
2222
2323 testImplementation ' org.springframework.boot:spring-boot-starter-test'
24- testImplementation ' org.apache.activemq:activemq-broker:5.19.1 '
24+ testImplementation ' org.apache.activemq:activemq-broker:6.1.8 '
2525 testImplementation ' junit:junit'
2626}
2727
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.3 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-9.2.0 -bin.zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 11#! /bin/sh
22
33#
4- # Copyright © 2015-2021 the original authors.
4+ # Copyright © 2015 the original authors.
55#
66# Licensed under the Apache License, Version 2.0 (the "License");
77# you may not use this file except in compliance with the License.
@@ -114,7 +114,6 @@ case "$( uname )" in #(
114114 NONSTOP* ) nonstop=true ;;
115115esac
116116
117- CLASSPATH=" \\\"\\\" "
118117
119118
120119# Determine the Java command to use to start the JVM.
172171# For Cygwin or MSYS, switch paths to Windows format before running java
173172if " $cygwin " || " $msys " ; then
174173 APP_HOME=$( cygpath --path --mixed " $APP_HOME " )
175- CLASSPATH=$( cygpath --path --mixed " $CLASSPATH " )
176174
177175 JAVACMD=$( cygpath --unix " $JAVACMD " )
178176
@@ -212,7 +210,6 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
212210
213211set -- \
214212 " -Dorg.gradle.appname=$APP_BASE_NAME " \
215- -classpath " $CLASSPATH " \
216213 -jar " $APP_HOME /gradle/wrapper/gradle-wrapper.jar" \
217214 " $@ "
218215
Original file line number Diff line number Diff line change @@ -70,11 +70,10 @@ goto fail
7070:execute
7171@ rem Setup the command line
7272
73- set CLASSPATH =
7473
7574
7675@ rem Execute Gradle
77- " %JAVA_EXE% " %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% " -Dorg.gradle.appname=%APP_BASE_NAME% " -classpath " %CLASSPATH% " - jar " %APP_HOME% \gradle\wrapper\gradle-wrapper.jar" %*
76+ " %JAVA_EXE% " %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% " -Dorg.gradle.appname=%APP_BASE_NAME% " -jar " %APP_HOME% \gradle\wrapper\gradle-wrapper.jar" %*
7877
7978:end
8079@ rem End local scope for the variables with windows NT shell
Original file line number Diff line number Diff line change 88import org .springframework .web .bind .annotation .PathVariable ;
99import org .springframework .web .bind .annotation .RestController ;
1010
11- import javax .servlet .http .HttpServletResponse ;
11+ import jakarta .servlet .http .HttpServletResponse ;
1212import java .io .IOException ;
1313import java .io .InputStream ;
1414import java .io .OutputStream ;
Original file line number Diff line number Diff line change 88import org .springframework .stereotype .Service ;
99import org .springframework .util .StreamUtils ;
1010
11- import javax .jms .BytesMessage ;
12- import javax .jms .JMSException ;
13- import javax .jms .Message ;
11+ import jakarta .jms .BytesMessage ;
12+ import jakarta .jms .JMSException ;
13+ import jakarta .jms .Message ;
1414import java .io .ByteArrayInputStream ;
1515import java .io .ByteArrayOutputStream ;
1616import java .io .File ;
Original file line number Diff line number Diff line change 1+ org.netresearch.amqblobspring.BlobAutoConfiguration
Original file line number Diff line number Diff line change 1515import org .springframework .util .StreamUtils ;
1616import org .springframework .web .servlet .config .annotation .EnableWebMvc ;
1717
18- import javax .jms .BytesMessage ;
19- import javax .jms .Connection ;
20- import javax .jms .Message ;
21- import javax .jms .MessageProducer ;
22- import javax .jms .Queue ;
23- import javax .jms .QueueReceiver ;
24- import javax .jms .Session ;
18+ import jakarta .jms .BytesMessage ;
19+ import jakarta .jms .Connection ;
20+ import jakarta .jms .Message ;
21+ import jakarta .jms .MessageProducer ;
22+ import jakarta .jms .Queue ;
23+ import jakarta .jms .QueueReceiver ;
24+ import jakarta .jms .Session ;
2525import java .io .ByteArrayInputStream ;
2626import java .io .IOException ;
2727import java .nio .charset .Charset ;
Original file line number Diff line number Diff line change 1212import org .springframework .test .context .ContextConfiguration ;
1313import org .springframework .test .context .junit4 .SpringRunner ;
1414
15- import javax .jms .BytesMessage ;
16- import javax .jms .Connection ;
17- import javax .jms .JMSException ;
18- import javax .jms .Message ;
19- import javax .jms .Queue ;
20- import javax .jms .QueueReceiver ;
21- import javax .jms .Session ;
15+ import jakarta .jms .BytesMessage ;
16+ import jakarta .jms .Connection ;
17+ import jakarta .jms .JMSException ;
18+ import jakarta .jms .Message ;
19+ import jakarta .jms .Queue ;
20+ import jakarta .jms .QueueReceiver ;
21+ import jakarta .jms .Session ;
2222import java .io .ByteArrayInputStream ;
2323import java .nio .file .Files ;
2424import java .nio .file .Path ;
You can’t perform that action at this time.
0 commit comments