Skip to content

Commit 2e44f31

Browse files
committed
Upgrade Maven plugins in build
1 parent 56bdf5c commit 2e44f31

File tree

2 files changed

+5
-15
lines changed

2 files changed

+5
-15
lines changed

pom.xml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<plugin>
102102
<groupId>org.codehaus.mojo</groupId>
103103
<artifactId>flatten-maven-plugin</artifactId>
104-
<version>1.7.0</version>
104+
<version>1.7.1</version>
105105
</plugin>
106106
<plugin>
107107
<groupId>io.spring.javaformat</groupId>
@@ -141,7 +141,7 @@
141141
<dependency>
142142
<groupId>com.puppycrawl.tools</groupId>
143143
<artifactId>checkstyle</artifactId>
144-
<version>10.21.4</version>
144+
<version>10.26.1</version>
145145
</dependency>
146146
<dependency>
147147
<groupId>io.spring.javaformat</groupId>
@@ -155,16 +155,6 @@
155155
<artifactId>frontend-maven-plugin</artifactId>
156156
<version>1.15.1</version>
157157
</plugin>
158-
<plugin>
159-
<groupId>org.apache.maven.plugins</groupId>
160-
<artifactId>maven-resources-plugin</artifactId>
161-
<version>3.3.1</version>
162-
</plugin>
163-
<plugin>
164-
<groupId>org.apache.maven.plugins</groupId>
165-
<artifactId>maven-surefire-plugin</artifactId>
166-
<version>3.5.3</version>
167-
</plugin>
168158
<plugin>
169159
<groupId>org.apache.maven.plugins</groupId>
170160
<artifactId>maven-compiler-plugin</artifactId>

start-site/src/main/java/io/spring/start/site/extension/dependency/testcontainers/TestContainersApplicationCodeProjectContributor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@
4545
abstract class TestContainersApplicationCodeProjectContributor<T extends TypeDeclaration, C extends CompilationUnit<T>, S extends SourceCode<T, C>>
4646
implements ProjectContributor {
4747

48-
public static final ClassName TEST_CONFIGURATION_CLASS_NAME = ClassName
48+
private static final ClassName TEST_CONFIGURATION_CLASS_NAME = ClassName
4949
.of("org.springframework.boot.test.context.TestConfiguration");
5050

51-
public static final ClassName BEAN_CLASS_NAME = ClassName.of("org.springframework.context.annotation.Bean");
51+
private static final ClassName BEAN_CLASS_NAME = ClassName.of("org.springframework.context.annotation.Bean");
5252

53-
public static final ClassName SERVICE_CONNECTION_CLASS_NAME = ClassName
53+
private static final ClassName SERVICE_CONNECTION_CLASS_NAME = ClassName
5454
.of("org.springframework.boot.testcontainers.service.connection.ServiceConnection");
5555

5656
private static final ClassName DOCKER_IMAGE_NAME_CLASS_NAME = ClassName

0 commit comments

Comments
 (0)