|
10 | 10 | <parent> |
11 | 11 | <groupId>org.springframework.boot</groupId> |
12 | 12 | <artifactId>spring-boot-starter-parent</artifactId> |
13 | | - <version>3.4.4</version> |
| 13 | + <version>4.0.1</version> |
14 | 14 | </parent> |
15 | 15 | <name>petclinic</name> |
16 | 16 |
|
|
22 | 22 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
23 | 23 |
|
24 | 24 | <!-- Web dependencies --> |
25 | | - <webjars-bootstrap.version>3.3.6</webjars-bootstrap.version> |
26 | | - <webjars-jquery-ui.version>1.11.4</webjars-jquery-ui.version> |
27 | | - <webjars-jquery.version>2.2.4</webjars-jquery.version> |
28 | | - <wro4j.version>1.8.0</wro4j.version> |
| 25 | + <webjars-locator.version>1.1.2</webjars-locator.version> |
| 26 | + <webjars-bootstrap.version>3.4.1</webjars-bootstrap.version> |
| 27 | + <webjars-font-awesome.version>4.7.0</webjars-font-awesome.version> |
| 28 | + <webjars-jquery-ui.version>1.13.2</webjars-jquery-ui.version> |
| 29 | + <webjars-jquery.version>3.5.0</webjars-jquery.version> |
| 30 | + <wro4j.version>2.1.1</wro4j.version> |
29 | 31 |
|
30 | 32 | <jacoco.version>0.8.2</jacoco.version> |
31 | 33 | </properties> |
|
50 | 52 | </dependency> |
51 | 53 | <dependency> |
52 | 54 | <groupId>org.springframework.boot</groupId> |
53 | | - <artifactId>spring-boot-starter-web</artifactId> |
| 55 | + <artifactId>spring-boot-starter-webmvc</artifactId> |
54 | 56 | </dependency> |
55 | 57 | <dependency> |
56 | 58 | <groupId>org.springframework.boot</groupId> |
57 | 59 | <artifactId>spring-boot-starter-thymeleaf</artifactId> |
58 | 60 | </dependency> |
59 | | - <dependency> |
60 | | - <groupId>org.springframework.boot</groupId> |
61 | | - <artifactId>spring-boot-starter-test</artifactId> |
62 | | - <scope>test</scope> |
63 | | - </dependency> |
64 | | - <dependency> |
65 | | - <groupId>org.testcontainers</groupId> |
66 | | - <artifactId>mysql</artifactId> |
67 | | - <scope>test</scope> |
68 | | - </dependency> |
69 | 61 |
|
70 | 62 | <!-- Databases --> |
71 | 63 | <dependency> |
|
74 | 66 | <scope>runtime</scope> |
75 | 67 | </dependency> |
76 | 68 | <dependency> |
77 | | - <groupId>org.flywaydb</groupId> |
78 | | - <artifactId>flyway-core</artifactId> |
| 69 | + <groupId>org.springframework.boot</groupId> |
| 70 | + <artifactId>spring-boot-starter-flyway</artifactId> |
79 | 71 | </dependency> |
80 | 72 | <dependency> |
81 | 73 | <groupId>org.flywaydb</groupId> |
|
111 | 103 | <artifactId>spring-boot-devtools</artifactId> |
112 | 104 | <optional>true</optional> |
113 | 105 | </dependency> |
| 106 | + |
| 107 | + <dependency> |
| 108 | + <groupId>org.springframework.boot</groupId> |
| 109 | + <artifactId>spring-boot-starter-webmvc-test</artifactId> |
| 110 | + <scope>test</scope> |
| 111 | + </dependency> |
| 112 | + <dependency> |
| 113 | + <groupId>org.springframework.boot</groupId> |
| 114 | + <artifactId>spring-boot-starter-data-jdbc-test</artifactId> |
| 115 | + </dependency> |
| 116 | + <dependency> |
| 117 | + <groupId>org.springframework.boot</groupId> |
| 118 | + <artifactId>spring-boot-testcontainers</artifactId> |
| 119 | + <scope>test</scope> |
| 120 | + </dependency> |
| 121 | + <dependency> |
| 122 | + <groupId>org.testcontainers</groupId> |
| 123 | + <artifactId>testcontainers-junit-jupiter</artifactId> |
| 124 | + <scope>test</scope> |
| 125 | + </dependency> |
| 126 | + <dependency> |
| 127 | + <groupId>org.testcontainers</groupId> |
| 128 | + <artifactId>testcontainers-mysql</artifactId> |
| 129 | + <scope>test</scope> |
| 130 | + </dependency> |
| 131 | + |
114 | 132 | </dependencies> |
115 | 133 |
|
116 | 134 | <build> |
|
0 commit comments