Skip to content

Commit 0af0089

Browse files
committed
Merge branch '2.7.x' into 3.0.x
Closes gh-37404
2 parents 8adc739 + e1f6fb5 commit 0af0089

File tree

16 files changed

+12
-29
lines changed

16 files changed

+12
-29
lines changed

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/BuildOutput.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -23,7 +23,6 @@
2323
* Provides access to build output locations in a build system and IDE agnostic manner.
2424
*
2525
* @author Andy Wilkinson
26-
* @since 2.2.0
2726
*/
2827
public class BuildOutput {
2928

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/classpath/ClassPathExclusions.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2022 the original author or authors.
2+
* Copyright 2012-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -29,7 +29,6 @@
2929
* Annotation used to exclude entries from the classpath.
3030
*
3131
* @author Andy Wilkinson
32-
* @since 1.5.0
3332
*/
3433
@Retention(RetentionPolicy.RUNTIME)
3534
@Target({ ElementType.TYPE, ElementType.METHOD })

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/classpath/ClassPathOverrides.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2022 the original author or authors.
2+
* Copyright 2012-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,7 +28,6 @@
2828
* Annotation used to override entries on the classpath.
2929
*
3030
* @author Andy Wilkinson
31-
* @since 1.5.0
3231
*/
3332
@Retention(RetentionPolicy.RUNTIME)
3433
@Target({ ElementType.TYPE, ElementType.METHOD })

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/classpath/ForkedClassPath.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2022 the original author or authors.
2+
* Copyright 2012-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -30,7 +30,6 @@
3030
* {@link ClassPathOverrides} are needed, but just a copy of the classpath.
3131
*
3232
* @author Christoph Dreis
33-
* @since 2.4.0
3433
*/
3534
@Retention(RetentionPolicy.RUNTIME)
3635
@Target({ ElementType.TYPE, ElementType.METHOD })

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/junit/DisabledOnOs.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
* architecture check.
3030
*
3131
* @author Moritz Halbritter
32-
* @since 2.5.11
3332
*/
3433
@Target({ ElementType.TYPE, ElementType.METHOD })
3534
@Retention(RetentionPolicy.RUNTIME)

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/system/CapturedOutput.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2019 the original author or authors.
2+
* Copyright 2012-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -23,7 +23,6 @@
2323
* @author Madhura Bhave
2424
* @author Phillip Webb
2525
* @author Andy Wilkinson
26-
* @since 2.2.0
2726
*/
2827
public interface CapturedOutput extends CharSequence {
2928

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/system/OutputCaptureExtension.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262
* @author Phillip Webb
6363
* @author Andy Wilkinson
6464
* @author Sam Brannen
65-
* @since 2.2.0
6665
* @see CapturedOutput
6766
*/
6867
public class OutputCaptureExtension

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/testcontainers/CassandraContainer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2021 the original author or authors.
2+
* Copyright 2012-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -23,7 +23,6 @@
2323
* heavily contended environments such as CI.
2424
*
2525
* @author Andy Wilkinson
26-
* @since 2.4.10
2726
*/
2827
public class CassandraContainer extends org.testcontainers.containers.CassandraContainer<CassandraContainer> {
2928

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/testcontainers/DisabledIfDockerUnavailable.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -29,7 +29,6 @@
2929
*
3030
* @author Andy Wilkinson
3131
* @author Phillip Webb
32-
* @since 2.3.0
3332
*/
3433
@Target({ ElementType.TYPE, ElementType.METHOD })
3534
@Retention(RetentionPolicy.RUNTIME)

spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/testcontainers/DockerImageNames.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
* Create {@link DockerImageName} instances for services used in integration tests.
2323
*
2424
* @author Stephane Nicoll
25-
* @since 2.3.6
2625
*/
2726
public final class DockerImageNames {
2827

@@ -114,7 +113,6 @@ public static DockerImageName redis() {
114113
/**
115114
* Return a {@link DockerImageName} suitable for running a Docker registry.
116115
* @return a docker image name for running a registry
117-
* @since 2.4.0
118116
*/
119117
public static DockerImageName registry() {
120118
return DockerImageName.parse("registry").withTag(REGISTRY_VERSION);

0 commit comments

Comments
 (0)