|
50 | 50 | <java.version>1.8</java.version> |
51 | 51 | <version.maven>3.6.3</version.maven> |
52 | 52 | <spring-boot-admin.version>2.2.1</spring-boot-admin.version> |
| 53 | + <spring-boot-maven-plugin.version>${project.parent.version}</spring-boot-maven-plugin.version> |
53 | 54 | <!-- SCM and Releasing --> |
54 | 55 | <maven.scm.version>1.11.2</maven.scm.version> |
55 | 56 | <maven-release-plugin.version>2.5.3</maven-release-plugin.version> |
56 | 57 | <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> |
57 | 58 | <!-- Maven plugins --> |
| 59 | + <maven-antrun-plugin.version>1.8</maven-antrun-plugin.version> |
| 60 | + <maven-assembly-plugin.version>3.1.1</maven-assembly-plugin.version> |
| 61 | + <maven-clean-plugin.version>3.1.0</maven-clean-plugin.version> |
| 62 | + <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> |
| 63 | + <maven-dependency-plugin.version>3.1.2</maven-dependency-plugin.version> |
| 64 | + <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> |
58 | 65 | <maven-enforcer-plugin.version>3.0.0-M3</maven-enforcer-plugin.version> |
| 66 | + <maven-failsafe-plugin.version>2.22.2</maven-failsafe-plugin.version> |
| 67 | + <maven-help-plugin.version>3.2.0</maven-help-plugin.version> |
| 68 | + <maven-install-plugin.version>2.5.2</maven-install-plugin.version> |
| 69 | + <maven-invoker-plugin.version>3.2.1</maven-invoker-plugin.version> |
| 70 | + <maven-jar-plugin.version>3.1.2</maven-jar-plugin.version> |
| 71 | + <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> |
| 72 | + <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version> |
| 73 | + <maven-shade-plugin.version>3.2.2</maven-shade-plugin.version> |
| 74 | + <maven-site-plugin.version>3.8.2</maven-site-plugin.version> |
| 75 | + <maven-source-plugin.version>3.1.0</maven-source-plugin.version> |
| 76 | + <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
| 77 | + <maven-war-plugin.version>3.2.3</maven-war-plugin.version> |
| 78 | + <versions-maven-plugin.version>2.7</versions-maven-plugin.version> |
| 79 | + <xml-maven-plugin.version>1.0.2</xml-maven-plugin.version> |
| 80 | + <dependency-management-plugin.version>1.0.9.RELEASE</dependency-management-plugin.version> |
| 81 | + <git-commit-id-plugin.version>3.0.1</git-commit-id-plugin.version> |
| 82 | + |
| 83 | + <thymeleaf.version>3.0.11.RELEASE</thymeleaf.version> |
| 84 | + <thymeleaf-extras-data-attribute.version>2.0.1</thymeleaf-extras-data-attribute.version> |
| 85 | + <thymeleaf-extras-java8time.version>3.0.4.RELEASE</thymeleaf-extras-java8time.version> |
| 86 | + <thymeleaf-extras-springsecurity.version>3.0.4.RELEASE</thymeleaf-extras-springsecurity.version> |
| 87 | + <thymeleaf-layout-dialect.version>2.4.1</thymeleaf-layout-dialect.version> |
| 88 | + |
| 89 | + <spring-data-releasetrain.version>Moore-SR6</spring-data-releasetrain.version> |
| 90 | + <spring-framework.version>5.2.5.RELEASE</spring-framework.version> |
| 91 | + <spring-security.version>5.2.2.RELEASE</spring-security.version> |
| 92 | + <spring-session-bom.version>Corn-SR2</spring-session-bom.version> |
| 93 | + |
| 94 | + <junit-jupiter.version>5.5.2</junit-jupiter.version> |
| 95 | + <xmlunit2.version>2.6.4</xmlunit2.version> |
| 96 | + <htmlunit.version>2.36.0</htmlunit.version> |
| 97 | + <hamcrest.version>2.1</hamcrest.version> |
| 98 | + <lombok.version>1.18.12</lombok.version> |
| 99 | + |
59 | 100 | <!-- Maven Reports and Site --> |
60 | 101 | <maven-project-info-reports-plugin.version>3.0.0</maven-project-info-reports-plugin.version> |
61 | | - <maven-javadoc-plugin.version>3.1.0</maven-javadoc-plugin.version> |
62 | 102 | <maven-checkstyle-plugin.version>3.1.1</maven-checkstyle-plugin.version> |
63 | 103 | <maven-jxr-plugin.version>3.0.0</maven-jxr-plugin.version> |
64 | 104 | <maven-pmd-plugin.version>3.11.0</maven-pmd-plugin.version> |
65 | 105 | <spotbugs-maven-plugin.version>4.0.0</spotbugs-maven-plugin.version> |
66 | 106 | <maven-pmd-plugin.version>3.13.0</maven-pmd-plugin.version> |
67 | | - <!-- Testing --> |
68 | 107 | <maven-surefire-report-plugin.version>3.0.0-M4</maven-surefire-report-plugin.version> |
| 108 | + |
69 | 109 | <!-- Docker --> |
70 | 110 | <version.docker-compose-maven-plugin>4.0.0</version.docker-compose-maven-plugin> |
71 | 111 | <docker-compose-maven-plugin.verbose>true</docker-compose-maven-plugin.verbose> |
|
75 | 115 |
|
76 | 116 | <dependencyManagement> |
77 | 117 | <dependencies> |
| 118 | + <dependency> |
| 119 | + <groupId>org.junit</groupId> |
| 120 | + <artifactId>junit-bom</artifactId> |
| 121 | + <version>${junit-jupiter.version}</version> |
| 122 | + <type>pom</type> |
| 123 | + <scope>import</scope> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>org.springframework</groupId> |
| 127 | + <artifactId>spring-framework-bom</artifactId> |
| 128 | + <version>${spring-framework.version}</version> |
| 129 | + <type>pom</type> |
| 130 | + <scope>import</scope> |
| 131 | + </dependency> |
| 132 | + <dependency> |
| 133 | + <groupId>org.springframework.data</groupId> |
| 134 | + <artifactId>spring-data-releasetrain</artifactId> |
| 135 | + <version>${spring-data-releasetrain.version}</version> |
| 136 | + <type>pom</type> |
| 137 | + <scope>import</scope> |
| 138 | + </dependency> |
| 139 | + <dependency> |
| 140 | + <groupId>org.springframework.security</groupId> |
| 141 | + <artifactId>spring-security-bom</artifactId> |
| 142 | + <version>${spring-security.version}</version> |
| 143 | + <type>pom</type> |
| 144 | + <scope>import</scope> |
| 145 | + </dependency> |
| 146 | + <dependency> |
| 147 | + <groupId>org.springframework.session</groupId> |
| 148 | + <artifactId>spring-session-bom</artifactId> |
| 149 | + <version>${spring-session-bom.version}</version> |
| 150 | + <type>pom</type> |
| 151 | + <scope>import</scope> |
| 152 | + </dependency> |
| 153 | + |
78 | 154 | <dependency> |
79 | 155 | <groupId>org.webjars</groupId> |
80 | 156 | <artifactId>font-awesome</artifactId> |
|
100 | 176 | <artifactId>ckeditor</artifactId> |
101 | 177 | <version>4.11.3</version> |
102 | 178 | </dependency> |
| 179 | + |
| 180 | + <dependency> |
| 181 | + <groupId>org.thymeleaf</groupId> |
| 182 | + <artifactId>thymeleaf</artifactId> |
| 183 | + <version>${thymeleaf.version}</version> |
| 184 | + </dependency> |
| 185 | + <dependency> |
| 186 | + <groupId>org.thymeleaf</groupId> |
| 187 | + <artifactId>thymeleaf-spring5</artifactId> |
| 188 | + <version>${thymeleaf.version}</version> |
| 189 | + </dependency> |
| 190 | + <dependency> |
| 191 | + <groupId>org.thymeleaf.extras</groupId> |
| 192 | + <artifactId>thymeleaf-extras-java8time</artifactId> |
| 193 | + <version>${thymeleaf-extras-java8time.version}</version> |
| 194 | + </dependency> |
| 195 | + <dependency> |
| 196 | + <groupId>org.thymeleaf.extras</groupId> |
| 197 | + <artifactId>thymeleaf-extras-springsecurity5</artifactId> |
| 198 | + <version>${thymeleaf-extras-springsecurity.version}</version> |
| 199 | + </dependency> |
103 | 200 | <dependency> |
104 | 201 | <groupId>io.github.jpenren</groupId> |
105 | 202 | <artifactId>thymeleaf-spring-data-dialect</artifactId> |
106 | 203 | <version>3.4.0</version> |
107 | 204 | </dependency> |
| 205 | + |
| 206 | + <dependency> |
| 207 | + <groupId>org.projectlombok</groupId> |
| 208 | + <artifactId>lombok</artifactId> |
| 209 | + <version>${lombok.version}</version> |
| 210 | + <optional>false</optional> |
| 211 | + </dependency> |
| 212 | + |
108 | 213 | <dependency> |
109 | 214 | <groupId>org.jsoup</groupId> |
110 | 215 | <artifactId>jsoup</artifactId> |
111 | 216 | <version>1.8.3</version> |
112 | 217 | </dependency> |
| 218 | + |
| 219 | + <dependency> |
| 220 | + <groupId>org.hamcrest</groupId> |
| 221 | + <artifactId>hamcrest</artifactId> |
| 222 | + <version>${hamcrest.version}</version> |
| 223 | + <scope>test</scope> |
| 224 | + </dependency> |
113 | 225 | <dependency> |
114 | | - <groupId>org.junit.jupiter</groupId> |
115 | | - <artifactId>junit-jupiter-engine</artifactId> |
116 | | - <version>5.4.0</version> |
| 226 | + <groupId>org.hamcrest</groupId> |
| 227 | + <artifactId>hamcrest-core</artifactId> |
| 228 | + <version>${hamcrest.version}</version> |
117 | 229 | <scope>test</scope> |
118 | 230 | </dependency> |
119 | 231 | <dependency> |
120 | | - <groupId>org.junit.jupiter</groupId> |
121 | | - <artifactId>junit-jupiter-api</artifactId> |
122 | | - <version>5.4.0</version> |
| 232 | + <groupId>org.hamcrest</groupId> |
| 233 | + <artifactId>hamcrest-library</artifactId> |
| 234 | + <version>${hamcrest.version}</version> |
123 | 235 | <scope>test</scope> |
124 | 236 | </dependency> |
125 | 237 |
|
126 | | - |
127 | 238 | <dependency> |
128 | 239 | <groupId>org.apache.maven.plugins</groupId> |
129 | 240 | <artifactId>maven-enforcer-plugin</artifactId> |
130 | 241 | <version>${maven-enforcer-plugin.version}</version> |
131 | 242 | <type>maven-plugin</type> |
132 | 243 | </dependency> |
| 244 | + <dependency> |
| 245 | + <groupId>org.apache.maven.plugins</groupId> |
| 246 | + <artifactId>maven-invoker-plugin</artifactId> |
| 247 | + <version>${maven-invoker-plugin.version}</version> |
| 248 | + <type>maven-plugin</type> |
| 249 | + </dependency> |
133 | 250 | <dependency> |
134 | 251 | <groupId>com.dkanejs.maven.plugins</groupId> |
135 | 252 | <artifactId>docker-compose-maven-plugin</artifactId> |
|
139 | 256 | <dependency> |
140 | 257 | <groupId>org.apache.maven.plugins</groupId> |
141 | 258 | <artifactId>maven-clean-plugin</artifactId> |
142 | | - <version>3.1.0</version> |
| 259 | + <version>${maven-clean-plugin.version}</version> |
| 260 | + <type>maven-plugin</type> |
| 261 | + </dependency> |
| 262 | + <dependency> |
| 263 | + <groupId>org.apache.maven.plugins</groupId> |
| 264 | + <artifactId>maven-dependency-plugin</artifactId> |
| 265 | + <version>${maven-dependency-plugin.version}</version> |
| 266 | + <type>maven-plugin</type> |
| 267 | + </dependency> |
| 268 | + <dependency> |
| 269 | + <groupId>org.apache.maven.plugins</groupId> |
| 270 | + <artifactId>maven-compiler-plugin</artifactId> |
| 271 | + <version>${maven-compiler-plugin.version}</version> |
| 272 | + <type>maven-plugin</type> |
| 273 | + </dependency> |
| 274 | + <dependency> |
| 275 | + <groupId>org.springframework.boot</groupId> |
| 276 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 277 | + <version>${spring-boot-maven-plugin.version}</version> |
143 | 278 | <type>maven-plugin</type> |
144 | 279 | </dependency> |
145 | 280 |
|
|
179 | 314 | <version>${maven-pmd-plugin.version}</version> |
180 | 315 | <type>maven-plugin</type> |
181 | 316 | </dependency> |
| 317 | + <dependency> |
| 318 | + <groupId>org.apache.maven.plugins</groupId> |
| 319 | + <artifactId>maven-surefire-plugin</artifactId> |
| 320 | + <version>${maven-surefire-plugin.version}</version> |
| 321 | + <type>maven-plugin</type> |
| 322 | + </dependency> |
182 | 323 | <dependency> |
183 | 324 | <groupId>org.apache.maven.plugins</groupId> |
184 | 325 | <artifactId>maven-surefire-report-plugin</artifactId> |
|
269 | 410 | <groupId>com.github.mxab.thymeleaf.extras</groupId> |
270 | 411 | <artifactId>thymeleaf-extras-data-attribute</artifactId> |
271 | 412 | </dependency> |
| 413 | + |
| 414 | + <dependency> |
| 415 | + <groupId>org.thymeleaf</groupId> |
| 416 | + <artifactId>thymeleaf</artifactId> |
| 417 | + </dependency> |
272 | 418 | <dependency> |
273 | 419 | <groupId>org.thymeleaf</groupId> |
274 | 420 | <artifactId>thymeleaf-spring5</artifactId> |
275 | 421 | </dependency> |
276 | 422 | <dependency> |
277 | 423 | <groupId>org.thymeleaf.extras</groupId> |
278 | | - <artifactId>thymeleaf-extras-springsecurity5</artifactId> |
| 424 | + <artifactId>thymeleaf-extras-java8time</artifactId> |
279 | 425 | </dependency> |
280 | 426 | <dependency> |
281 | 427 | <groupId>org.thymeleaf.extras</groupId> |
282 | | - <artifactId>thymeleaf-extras-java8time</artifactId> |
| 428 | + <artifactId>thymeleaf-extras-springsecurity5</artifactId> |
283 | 429 | </dependency> |
284 | 430 | <dependency> |
285 | 431 | <groupId>io.github.jpenren</groupId> |
286 | 432 | <artifactId>thymeleaf-spring-data-dialect</artifactId> |
287 | 433 | </dependency> |
| 434 | + |
288 | 435 | <dependency> |
289 | 436 | <groupId>org.jsoup</groupId> |
290 | 437 | <artifactId>jsoup</artifactId> |
|
0 commit comments