Skip to content

Commit 8471c93

Browse files
authored
deps: Updated the maven imports of page-controller pattern for SpringBoot 3.2.4 (#2862)
* Updated the imports in code of the single table inheritance pattern for Spring Boot 3.x #2825 Change javax library to jakarta * add pom.xml * Updated the imports in code of the healthcheck pattern for SpringBoot 3.x Change javax library to jakarta and update maven dependency versions * change order of imports to pass Checkstyle violations * change import order to pass lexicographical order test * change import order to pass CustomImportOrder warning * Updated the maven imports of layers pattern for SpringBoot 3.2.4 * remove unused maven import * Updated the maven imports of page-controller pattern for SpringBoot 3.2.4 - add page-controller module on parent pom.xml - add artifact information on page-controller pom.xml - add Springboot3, proper test dependencies on page-controller pom.xml
1 parent 9538c78 commit 8471c93

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

page-controller/pom.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,26 @@
2929
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3030
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3131
<modelVersion>4.0.0</modelVersion>
32-
<artifactId>page-controller</artifactId>
3332
<parent>
3433
<groupId>com.iluwatar</groupId>
3534
<artifactId>java-design-patterns</artifactId>
3635
<version>1.26.0-SNAPSHOT</version>
3736
</parent>
37+
<artifactId>page-controller</artifactId>
38+
<name>page-controller</name>
39+
<description>page-controller</description>
40+
<dependencyManagement>
41+
<dependencies>
42+
<dependency>
43+
<groupId>org.springframework.boot</groupId>
44+
<artifactId>spring-boot-dependencies</artifactId>
45+
<type>pom</type>
46+
<version>3.2.4</version>
47+
<scope>import</scope>
48+
</dependency>
49+
</dependencies>
50+
</dependencyManagement>
51+
3852
<dependencies>
3953
<dependency>
4054
<groupId>org.springframework</groupId>
@@ -62,6 +76,11 @@
6276
<artifactId>mockito-core</artifactId>
6377
<scope>test</scope>
6478
</dependency>
79+
<dependency>
80+
<groupId>org.springframework.boot</groupId>
81+
<artifactId>spring-boot-starter-test</artifactId>
82+
<scope>test</scope>
83+
</dependency>
6584
<dependency>
6685
<groupId>org.springframework</groupId>
6786
<artifactId>spring-test</artifactId>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@
138138
<module>abstract-document</module>
139139
<module>aggregator-microservices</module>
140140
<module>promise</module>
141+
<module>page-controller</module>
141142
<module>page-object</module>
142143
<module>event-asynchronous</module>
143144
<module>event-queue</module>

0 commit comments

Comments
 (0)