|
37 | 37 |
|
38 | 38 | <spring-boot-admin.version>3.4.1</spring-boot-admin.version> |
39 | 39 | <spring-cloud-starter-client.version>4.2.0</spring-cloud-starter-client.version> |
40 | | - <spring-starter-parent.version>3.4.1</spring-starter-parent.version> |
41 | 40 | </properties> |
42 | 41 |
|
43 | 42 | <dependencyManagement> |
44 | 43 | <dependencies> |
45 | 44 | <dependency> |
46 | 45 | <groupId>org.springframework.boot</groupId> |
47 | 46 | <artifactId>spring-boot-starter-parent</artifactId> |
48 | | - <version>${spring-starter-parent.version}</version> |
| 47 | + <version>2.6.7</version> |
49 | 48 | <type>pom</type> |
50 | 49 | <scope>import</scope> |
51 | 50 | </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.springframework</groupId> |
| 53 | + <artifactId>spring-beans</artifactId> |
| 54 | + <version>6.2.1</version> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>org.springframework</groupId> |
| 58 | + <artifactId>spring-context</artifactId> |
| 59 | + <version>6.2.1</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>io.github.classgraph</groupId> |
| 63 | + <artifactId>classgraph</artifactId> |
| 64 | + <version>4.8.179</version> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.postgresql</groupId> |
| 68 | + <artifactId>postgresql</artifactId> |
| 69 | + <version>42.7.5</version> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>org.yaml</groupId> |
| 73 | + <artifactId>snakeyaml</artifactId> |
| 74 | + <version>2.3</version> |
| 75 | + </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>ch.qos.logback</groupId> |
| 78 | + <artifactId>logback-classic</artifactId> |
| 79 | + <version>1.5.16</version> |
| 80 | + <scope>test</scope> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>ch.qos.logback</groupId> |
| 84 | + <artifactId>logback-core</artifactId> |
| 85 | + <version>1.5.16</version> |
| 86 | + </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>org.springframework.boot</groupId> |
| 89 | + <artifactId>spring-boot-autoconfigure</artifactId> |
| 90 | + <version>3.4.1</version> |
| 91 | + </dependency> |
| 92 | + <dependency> |
| 93 | + <groupId>org.springframework</groupId> |
| 94 | + <artifactId>spring-core</artifactId> |
| 95 | + <version>6.2.1</version> |
| 96 | + </dependency> |
| 97 | + <dependency> |
| 98 | + <groupId>org.springframework</groupId> |
| 99 | + <artifactId>spring-expression</artifactId> |
| 100 | + <version>6.2.1</version> |
| 101 | + </dependency> |
| 102 | + <dependency> |
| 103 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 104 | + <artifactId>jackson-databind</artifactId> |
| 105 | + <version>2.18.2</version> |
| 106 | + </dependency> |
| 107 | + <dependency> |
| 108 | + <groupId>org.apache.tomcat.embed</groupId> |
| 109 | + <artifactId>tomcat-embed-core</artifactId> |
| 110 | + <version>11.0.2</version> |
| 111 | + </dependency> |
| 112 | + <dependency> |
| 113 | + <groupId>org.apache.tomcat.embed</groupId> |
| 114 | + <artifactId>tomcat-embed-websocket</artifactId> |
| 115 | + <version>11.0.2</version> |
| 116 | + </dependency> |
| 117 | + <dependency> |
| 118 | + <groupId>org.springframework</groupId> |
| 119 | + <artifactId>spring-web</artifactId> |
| 120 | + <version>6.2.1</version> |
| 121 | + </dependency> |
| 122 | + <dependency> |
| 123 | + <groupId>org.springframework</groupId> |
| 124 | + <artifactId>spring-webmvc</artifactId> |
| 125 | + <version>6.2.1</version> |
| 126 | + </dependency> |
| 127 | + <dependency> |
| 128 | + <groupId>org.hibernate.validator</groupId> |
| 129 | + <artifactId>hibernate-validator</artifactId> |
| 130 | + <version>8.0.2.Final</version> |
| 131 | + </dependency> |
| 132 | + <dependency> |
| 133 | + <groupId>com.h2database</groupId> |
| 134 | + <artifactId>h2</artifactId> |
| 135 | + <version>2.3.232</version> |
| 136 | + <scope>test</scope> |
| 137 | + </dependency> |
| 138 | + <dependency> |
| 139 | + <groupId>com.jayway.jsonpath</groupId> |
| 140 | + <artifactId>json-path</artifactId> |
| 141 | + <version>2.9.0</version> |
| 142 | + </dependency> |
| 143 | + <dependency> |
| 144 | + <groupId>net.minidev</groupId> |
| 145 | + <artifactId>json-smart</artifactId> |
| 146 | + <version>2.4.11</version> |
| 147 | + </dependency> |
| 148 | + <dependency> |
| 149 | + <groupId>org.xmlunit</groupId> |
| 150 | + <artifactId>xmlunit-core</artifactId> |
| 151 | + <version>2.10.0</version> |
| 152 | + <scope>test</scope> |
| 153 | + </dependency> |
| 154 | + <dependency> |
| 155 | + <groupId>io.projectreactor.netty</groupId> |
| 156 | + <artifactId>reactor-netty-http</artifactId> |
| 157 | + <version>1.2.2</version> |
| 158 | + </dependency> |
| 159 | + <dependency> |
| 160 | + <groupId>org.springframework</groupId> |
| 161 | + <artifactId>spring-webflux</artifactId> |
| 162 | + <version>6.2.1</version> |
| 163 | + </dependency> |
| 164 | + <dependency> |
| 165 | + <groupId>io.netty</groupId> |
| 166 | + <artifactId>netty-codec-http2</artifactId> |
| 167 | + <version>4.1.117.Final</version> |
| 168 | + </dependency> |
| 169 | + <dependency> |
| 170 | + <groupId>io.netty</groupId> |
| 171 | + <artifactId>netty-codec-http</artifactId> |
| 172 | + <version>4.1.117.Final</version> |
| 173 | + </dependency> |
| 174 | + <dependency> |
| 175 | + <groupId>io.netty</groupId> |
| 176 | + <artifactId>netty-common</artifactId> |
| 177 | + <version>4.1.117.Final</version> |
| 178 | + </dependency> |
| 179 | + <dependency> |
| 180 | + <groupId>io.netty</groupId> |
| 181 | + <artifactId>netty-handler</artifactId> |
| 182 | + <version>4.1.117.Final</version> |
| 183 | + </dependency> |
| 184 | + <dependency> |
| 185 | + <groupId>io.projectreactor.netty</groupId> |
| 186 | + <artifactId>reactor-netty-core</artifactId> |
| 187 | + <version>1.2.2</version> |
| 188 | + </dependency> |
| 189 | + <dependency> |
| 190 | + <groupId>org.springframework.boot</groupId> |
| 191 | + <artifactId>spring-boot-actuator</artifactId> |
| 192 | + <version>3.4.1</version> |
| 193 | + </dependency> |
| 194 | + <dependency> |
| 195 | + <groupId>org.springframework.boot</groupId> |
| 196 | + <artifactId>spring-boot-actuator-autoconfigure</artifactId> |
| 197 | + <version>3.4.1</version> |
| 198 | + </dependency> |
| 199 | + <dependency> |
| 200 | + <groupId>org.springframework.security</groupId> |
| 201 | + <artifactId>spring-security-config</artifactId> |
| 202 | + <version>6.4.2</version> |
| 203 | + </dependency> |
| 204 | + <dependency> |
| 205 | + <groupId>org.springframework.security</groupId> |
| 206 | + <artifactId>spring-security-core</artifactId> |
| 207 | + <version>6.4.2</version> |
| 208 | + </dependency> |
| 209 | + <dependency> |
| 210 | + <groupId>org.springframework.security</groupId> |
| 211 | + <artifactId>spring-security-web</artifactId> |
| 212 | + <version>6.4.2</version> |
| 213 | + </dependency> |
| 214 | + <dependency> |
| 215 | + <groupId>com.google.guava</groupId> |
| 216 | + <artifactId>guava</artifactId> |
| 217 | + <version>33.4.0-jre</version> |
| 218 | + </dependency> |
52 | 219 | <dependency> |
53 | 220 | <groupId>com.thoughtworks.xstream</groupId> |
54 | 221 | <artifactId>xstream</artifactId> |
|
0 commit comments