|
19 | 19 | <description>Demo project for Spring Boot</description> |
20 | 20 |
|
21 | 21 | <properties> |
22 | | - <java.version>17</java.version> |
| 22 | + <java.version>21</java.version> |
23 | 23 |
|
24 | 24 | </properties> |
25 | 25 |
|
|
41 | 41 | <groupId>org.springframework.boot</groupId> |
42 | 42 | <artifactId>spring-boot-starter-actuator</artifactId> |
43 | 43 | </dependency> |
44 | | - <dependency> |
45 | | - <groupId>org.springframework.boot</groupId> |
46 | | - <artifactId>spring-boot-devtools</artifactId> |
47 | | - <scope>runtime</scope> |
48 | | - <optional>true</optional> |
49 | | - </dependency> |
| 44 | + |
| 45 | + <dependency> |
| 46 | + <groupId>org.springframework.boot</groupId> |
| 47 | + <artifactId>spring-boot-devtools</artifactId> |
| 48 | + <scope>runtime</scope> |
| 49 | + <optional>true</optional> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.springframework.boot</groupId> |
| 53 | + <artifactId>spring-boot-docker-compose</artifactId> |
| 54 | + <scope>runtime</scope> |
| 55 | + <optional>true</optional> |
| 56 | + </dependency> |
| 57 | + |
50 | 58 | <dependency> |
51 | 59 | <groupId>org.springframework.boot</groupId> |
52 | 60 | <artifactId>spring-boot-configuration-processor</artifactId> |
|
68 | 76 | <dependencyManagement> |
69 | 77 | <dependencies> |
70 | 78 |
|
71 | | - <dependency> |
72 | | - <groupId>org.springframework.experimental</groupId> |
73 | | - <artifactId>spring-native</artifactId> |
74 | | - <version>0.12.1</version> |
75 | | - </dependency> |
| 79 | + |
76 | 80 | <dependency> |
77 | 81 | <groupId>org.mybatis.spring.boot</groupId> |
78 | 82 | <artifactId>mybatis-spring-boot-starter</artifactId> |
|
92 | 96 | </dependencyManagement> |
93 | 97 |
|
94 | 98 |
|
| 99 | + <repositories> |
| 100 | + <repository> |
| 101 | + <id>spring-milestones</id> |
| 102 | + <name>Spring Milestones</name> |
| 103 | + <url>https://repo.spring.io/milestone</url> |
| 104 | + <snapshots> |
| 105 | + <enabled>true</enabled> |
| 106 | + </snapshots> |
| 107 | + </repository> |
| 108 | + <repository> |
| 109 | + <id>spring-snapshots</id> |
| 110 | + <name>Spring Snapshots</name> |
| 111 | + <url>https://repo.spring.io/snapshot</url> |
| 112 | + <releases> |
| 113 | + <enabled>true</enabled> |
| 114 | + </releases> |
| 115 | + </repository> |
| 116 | + <repository> |
| 117 | + <id>snapshots</id> |
| 118 | + <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 119 | + <releases> |
| 120 | + <enabled>true</enabled> |
| 121 | + </releases> |
| 122 | + <snapshots> |
| 123 | + <enabled>true</enabled> |
| 124 | + </snapshots> |
| 125 | + </repository> |
| 126 | + </repositories> |
| 127 | + <pluginRepositories> |
| 128 | + <pluginRepository> |
| 129 | + <id>spring-milestones</id> |
| 130 | + <name>Spring Milestones</name> |
| 131 | + <url>https://repo.spring.io/milestone</url> |
| 132 | + <snapshots> |
| 133 | + <enabled>true</enabled> |
| 134 | + </snapshots> |
| 135 | + </pluginRepository> |
| 136 | + <pluginRepository> |
| 137 | + <id>spring-snapshots</id> |
| 138 | + <name>Spring Snapshots</name> |
| 139 | + <url>https://repo.spring.io/snapshot</url> |
| 140 | + <releases> |
| 141 | + <enabled>true</enabled> |
| 142 | + </releases> |
| 143 | + </pluginRepository> |
| 144 | + </pluginRepositories> |
95 | 145 | </project> |
0 commit comments