|
39 | 39 | </license> |
40 | 40 | </licenses> |
41 | 41 |
|
| 42 | + <scm> |
| 43 | + <connection>scm:git:git@github.com:Spring-Framework-Java-Apps/simpleworklist.git</connection> |
| 44 | + <developerConnection>scm:git:git@github.com:Spring-Framework-Java-Apps/simpleworklist.git</developerConnection> |
| 45 | + <url>https://github.com/Spring-Framework-Java-Apps/simpleworklist/tree/${project.scm.tag}</url> |
| 46 | + <tag>master</tag> |
| 47 | + </scm> |
| 48 | + |
| 49 | + <issueManagement> |
| 50 | + <system>Github</system> |
| 51 | + <url>https://github.com/Spring-Framework-Java-Apps/simpleworklist/issues</url> |
| 52 | + </issueManagement> |
| 53 | + |
| 54 | + <distributionManagement> |
| 55 | + <site> |
| 56 | + <id>simpleworklist.public_html</id> |
| 57 | + <url>file://${user.home}/public_html/p/simpleworklist</url> |
| 58 | + </site> |
| 59 | + </distributionManagement> |
| 60 | + |
| 61 | + <properties> |
| 62 | + <java.version>11</java.version> |
| 63 | + <version.maven>3.6.3</version.maven> |
| 64 | + |
| 65 | + <!-- SCM and Releasing with Maven --> |
| 66 | + <maven.scm.version>1.11.2</maven.scm.version> |
| 67 | + <maven-release-plugin.version>3.0.0-M1</maven-release-plugin.version> |
| 68 | + <maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version> |
| 69 | + |
| 70 | + <!-- Maven plugins --> |
| 71 | + <maven-antrun-plugin.version>1.8</maven-antrun-plugin.version> |
| 72 | + <maven-assembly-plugin.version>3.1.1</maven-assembly-plugin.version> |
| 73 | + <maven-clean-plugin.version>3.1.0</maven-clean-plugin.version> |
| 74 | + <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> |
| 75 | + <maven-dependency-plugin.version>3.1.2</maven-dependency-plugin.version> |
| 76 | + <maven-enforcer-plugin.version>3.0.0-M3</maven-enforcer-plugin.version> |
| 77 | + <maven-failsafe-plugin.version>2.22.2</maven-failsafe-plugin.version> |
| 78 | + <maven-help-plugin.version>3.2.0</maven-help-plugin.version> |
| 79 | + <maven-install-plugin.version>2.5.2</maven-install-plugin.version> |
| 80 | + <maven-invoker-plugin.version>3.2.1</maven-invoker-plugin.version> |
| 81 | + <maven-jar-plugin.version>3.1.2</maven-jar-plugin.version> |
| 82 | + <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> |
| 83 | + <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version> |
| 84 | + <maven-shade-plugin.version>3.2.2</maven-shade-plugin.version> |
| 85 | + <maven-source-plugin.version>3.1.0</maven-source-plugin.version> |
| 86 | + <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
| 87 | + <maven-war-plugin.version>3.2.3</maven-war-plugin.version> |
| 88 | + <versions-maven-plugin.version>2.7</versions-maven-plugin.version> |
| 89 | + <xml-maven-plugin.version>1.0.2</xml-maven-plugin.version> |
| 90 | + <dependency-management-plugin.version>1.0.9.RELEASE</dependency-management-plugin.version> |
| 91 | + <git-commit-id-plugin.version>3.0.1</git-commit-id-plugin.version> |
| 92 | + <maven-changes-plugin.version>2.12.1</maven-changes-plugin.version> |
| 93 | + |
| 94 | + <!-- Maven Reports and Site --> |
| 95 | + <maven-project-info-reports-plugin.version>3.0.0</maven-project-info-reports-plugin.version> |
| 96 | + <maven-checkstyle-plugin.version>3.1.1</maven-checkstyle-plugin.version> |
| 97 | + <maven-jxr-plugin.version>3.0.0</maven-jxr-plugin.version> |
| 98 | + <maven-pmd-plugin.version>3.11.0</maven-pmd-plugin.version> |
| 99 | + <spotbugs-maven-plugin.version>4.0.0</spotbugs-maven-plugin.version> |
| 100 | + <doxia-module-markdown.version>1.3</doxia-module-markdown.version> |
| 101 | + <maven-pmd-plugin.version>3.13.0</maven-pmd-plugin.version> |
| 102 | + <maven-surefire-report-plugin.version>3.0.0-M4</maven-surefire-report-plugin.version> |
| 103 | + <maven-site-plugin.version>3.9.0</maven-site-plugin.version> |
| 104 | + <doxia-module.version>1.9.1</doxia-module.version> |
| 105 | + |
| 106 | + <!-- Docker --> |
| 107 | + <version.docker-compose-maven-plugin>4.0.0</version.docker-compose-maven-plugin> |
| 108 | + <docker-compose-maven-plugin.verbose>true</docker-compose-maven-plugin.verbose> |
| 109 | + <docker-compose-maven-plugin.removeImages>true</docker-compose-maven-plugin.removeImages> |
| 110 | + <docker-compose-maven-plugin.removeVolumes>true</docker-compose-maven-plugin.removeVolumes> |
| 111 | + |
| 112 | + <!-- Frontend Client Site --> |
| 113 | + <webjars.jquery.version>3.4.1</webjars.jquery.version> |
| 114 | + <webjars.bootstrap.version>4.4.1-1</webjars.bootstrap.version> |
| 115 | + <webjars.font-awesome.version>5.13.0</webjars.font-awesome.version> |
| 116 | + <webjars.ckeditor.version>4.14.0</webjars.ckeditor.version> |
| 117 | + |
| 118 | + <!-- Frontend Server Site: Thymeleaf Templates --> |
| 119 | + <thymeleaf.version>3.0.11.RELEASE</thymeleaf.version> |
| 120 | + <thymeleaf-spring-data-dialect.version>3.4.0</thymeleaf-spring-data-dialect.version> |
| 121 | + <thymeleaf-extras-data-attribute.version>2.0.1</thymeleaf-extras-data-attribute.version> |
| 122 | + <thymeleaf-layout-dialect.version>2.4.1</thymeleaf-layout-dialect.version> |
| 123 | + <thymeleaf-extras-java8time.version>3.0.4.RELEASE</thymeleaf-extras-java8time.version> |
| 124 | + <thymeleaf-extras-springsecurity.version>3.0.4.RELEASE</thymeleaf-extras-springsecurity.version> |
| 125 | + <thymeleaf-testing.version>3.0.4.RELEASE</thymeleaf-testing.version> |
| 126 | + |
| 127 | + <!-- Spring Boot and Spring Frameworks --> |
| 128 | + <spring-boot-maven-plugin.version>${project.parent.version}</spring-boot-maven-plugin.version> |
| 129 | + <spring-session-bom.version>Dragonfruit-RELEASE</spring-session-bom.version> |
| 130 | + <spring-data-releasetrain.version>Neumann-RELEASE</spring-data-releasetrain.version> |
| 131 | + <spring-framework.version>5.2.6.RELEASE</spring-framework.version> |
| 132 | + <spring-security.version>5.3.2.RELEASE</spring-security.version> |
| 133 | + <spring-boot-admin.version>2.2.1</spring-boot-admin.version> |
| 134 | + |
| 135 | + <!-- Unit and Integration Testing --> |
| 136 | + <junit-jupiter.version>5.6.2</junit-jupiter.version> |
| 137 | + <xmlunit2.version>2.6.4</xmlunit2.version> |
| 138 | + <xmlunit.version>2.6.4</xmlunit.version> |
| 139 | + <htmlunit.version>2.40.0</htmlunit.version> |
| 140 | + <hamcrest.version>2.2</hamcrest.version> |
| 141 | + <lombok.version>1.18.12</lombok.version> |
| 142 | + <jsoup.version>1.13.1</jsoup.version> |
| 143 | + |
| 144 | + <skipTests>true</skipTests> |
| 145 | + </properties> |
| 146 | + |
42 | 147 | <repositories> |
43 | 148 | <repository> |
44 | 149 | <id>jcenter</id> |
|
172 | 277 | </pluginRepository> |
173 | 278 | </pluginRepositories> |
174 | 279 |
|
175 | | - <scm> |
176 | | - <connection>scm:git:git@github.com:Spring-Framework-Java-Apps/simpleworklist.git</connection> |
177 | | - <developerConnection>scm:git:git@github.com:Spring-Framework-Java-Apps/simpleworklist.git</developerConnection> |
178 | | - <url>https://github.com/Spring-Framework-Java-Apps/simpleworklist/tree/${project.scm.tag}</url> |
179 | | - <tag>master</tag> |
180 | | - </scm> |
181 | | - |
182 | | - <issueManagement> |
183 | | - <system>Github</system> |
184 | | - <url>https://github.com/Spring-Framework-Java-Apps/simpleworklist/issues</url> |
185 | | - </issueManagement> |
186 | | - |
187 | | - <distributionManagement> |
188 | | - <site> |
189 | | - <id>simpleworklist.public_html</id> |
190 | | - <url>file://${user.home}/public_html/p/simpleworklist</url> |
191 | | - </site> |
192 | | - </distributionManagement> |
193 | | - |
194 | | - <properties> |
195 | | - <java.version>11</java.version> |
196 | | - <version.maven>3.6.3</version.maven> |
197 | | - |
198 | | - <!-- SCM and Releasing with Maven --> |
199 | | - <maven.scm.version>1.11.2</maven.scm.version> |
200 | | - <maven-release-plugin.version>3.0.0-M1</maven-release-plugin.version> |
201 | | - <maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version> |
202 | | - |
203 | | - <!-- Maven plugins --> |
204 | | - <maven-antrun-plugin.version>1.8</maven-antrun-plugin.version> |
205 | | - <maven-assembly-plugin.version>3.1.1</maven-assembly-plugin.version> |
206 | | - <maven-clean-plugin.version>3.1.0</maven-clean-plugin.version> |
207 | | - <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> |
208 | | - <maven-dependency-plugin.version>3.1.2</maven-dependency-plugin.version> |
209 | | - <maven-enforcer-plugin.version>3.0.0-M3</maven-enforcer-plugin.version> |
210 | | - <maven-failsafe-plugin.version>2.22.2</maven-failsafe-plugin.version> |
211 | | - <maven-help-plugin.version>3.2.0</maven-help-plugin.version> |
212 | | - <maven-install-plugin.version>2.5.2</maven-install-plugin.version> |
213 | | - <maven-invoker-plugin.version>3.2.1</maven-invoker-plugin.version> |
214 | | - <maven-jar-plugin.version>3.1.2</maven-jar-plugin.version> |
215 | | - <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> |
216 | | - <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version> |
217 | | - <maven-shade-plugin.version>3.2.2</maven-shade-plugin.version> |
218 | | - <maven-source-plugin.version>3.1.0</maven-source-plugin.version> |
219 | | - <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
220 | | - <maven-war-plugin.version>3.2.3</maven-war-plugin.version> |
221 | | - <versions-maven-plugin.version>2.7</versions-maven-plugin.version> |
222 | | - <xml-maven-plugin.version>1.0.2</xml-maven-plugin.version> |
223 | | - <dependency-management-plugin.version>1.0.9.RELEASE</dependency-management-plugin.version> |
224 | | - <git-commit-id-plugin.version>3.0.1</git-commit-id-plugin.version> |
225 | | - <maven-changes-plugin.version>2.12.1</maven-changes-plugin.version> |
226 | | - |
227 | | - <!-- Maven Reports and Site --> |
228 | | - <maven-project-info-reports-plugin.version>3.0.0</maven-project-info-reports-plugin.version> |
229 | | - <maven-checkstyle-plugin.version>3.1.1</maven-checkstyle-plugin.version> |
230 | | - <maven-jxr-plugin.version>3.0.0</maven-jxr-plugin.version> |
231 | | - <maven-pmd-plugin.version>3.11.0</maven-pmd-plugin.version> |
232 | | - <spotbugs-maven-plugin.version>4.0.0</spotbugs-maven-plugin.version> |
233 | | - <doxia-module-markdown.version>1.3</doxia-module-markdown.version> |
234 | | - <maven-pmd-plugin.version>3.13.0</maven-pmd-plugin.version> |
235 | | - <maven-surefire-report-plugin.version>3.0.0-M4</maven-surefire-report-plugin.version> |
236 | | - <maven-site-plugin.version>3.9.0</maven-site-plugin.version> |
237 | | - <doxia-module.version>1.9.1</doxia-module.version> |
238 | | - |
239 | | - <!-- Docker --> |
240 | | - <version.docker-compose-maven-plugin>4.0.0</version.docker-compose-maven-plugin> |
241 | | - <docker-compose-maven-plugin.verbose>true</docker-compose-maven-plugin.verbose> |
242 | | - <docker-compose-maven-plugin.removeImages>true</docker-compose-maven-plugin.removeImages> |
243 | | - <docker-compose-maven-plugin.removeVolumes>true</docker-compose-maven-plugin.removeVolumes> |
244 | | - |
245 | | - <!-- Frontend Client Site --> |
246 | | - <webjars.jquery.version>3.4.1</webjars.jquery.version> |
247 | | - <webjars.bootstrap.version>4.4.1-1</webjars.bootstrap.version> |
248 | | - <webjars.font-awesome.version>5.13.0</webjars.font-awesome.version> |
249 | | - <webjars.ckeditor.version>4.14.0</webjars.ckeditor.version> |
250 | | - |
251 | | - <!-- Frontend Server Site: Thymeleaf Templates --> |
252 | | - <thymeleaf.version>3.0.11.RELEASE</thymeleaf.version> |
253 | | - <thymeleaf-spring-data-dialect.version>3.4.0</thymeleaf-spring-data-dialect.version> |
254 | | - <thymeleaf-extras-data-attribute.version>2.0.1</thymeleaf-extras-data-attribute.version> |
255 | | - <thymeleaf-layout-dialect.version>2.4.1</thymeleaf-layout-dialect.version> |
256 | | - <thymeleaf-extras-java8time.version>3.0.4.RELEASE</thymeleaf-extras-java8time.version> |
257 | | - <thymeleaf-extras-springsecurity.version>3.0.4.RELEASE</thymeleaf-extras-springsecurity.version> |
258 | | - <thymeleaf-testing.version>3.0.4.RELEASE</thymeleaf-testing.version> |
259 | | - |
260 | | - <!-- Spring Boot and Spring Frameworks --> |
261 | | - <spring-boot-maven-plugin.version>${project.parent.version}</spring-boot-maven-plugin.version> |
262 | | - <spring-session-bom.version>Dragonfruit-RELEASE</spring-session-bom.version> |
263 | | - <spring-data-releasetrain.version>Neumann-RELEASE</spring-data-releasetrain.version> |
264 | | - <spring-framework.version>5.2.6.RELEASE</spring-framework.version> |
265 | | - <spring-security.version>5.3.2.RELEASE</spring-security.version> |
266 | | - <spring-boot-admin.version>2.2.1</spring-boot-admin.version> |
267 | | - |
268 | | - <!-- Unit and Integration Testing --> |
269 | | - <junit-jupiter.version>5.6.2</junit-jupiter.version> |
270 | | - <xmlunit2.version>2.6.4</xmlunit2.version> |
271 | | - <xmlunit.version>2.6.4</xmlunit.version> |
272 | | - <htmlunit.version>2.40.0</htmlunit.version> |
273 | | - <hamcrest.version>2.2</hamcrest.version> |
274 | | - <lombok.version>1.18.12</lombok.version> |
275 | | - <jsoup.version>1.13.1</jsoup.version> |
276 | | - |
277 | | - <skipTests>true</skipTests> |
278 | | - </properties> |
279 | | - |
280 | 280 | <dependencyManagement> |
281 | 281 | <dependencies> |
282 | 282 | <dependency> |
|
0 commit comments