|
11 | 11 | </parent> |
12 | 12 | <groupId>org.fairdatateam</groupId> |
13 | 13 | <artifactId>fairdatapoint</artifactId> |
14 | | - <version>1.20.0</version> |
| 14 | + <version>${revision}</version> |
15 | 15 | <packaging>jar</packaging> |
16 | 16 |
|
17 | 17 | <name>FairDataPoint</name> |
|
46 | 46 | <properties> |
47 | 47 | <!-- Project --> |
48 | 48 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 49 | + <!-- The `revision` property should be overridden during build, e.g. `mvn -Drevision=v1.20.2 ...` --> |
| 50 | + <!-- This is handled automatically in the `docker-publish.yml` workflow, with the help of `PROJECT_VERSION`. --> |
| 51 | + <revision>dev</revision> |
49 | 52 |
|
50 | 53 | <!-- Maven --> |
51 | 54 | <maven.compiler.source>21</maven.compiler.source> |
|
54 | 57 | <!-- Project related --> |
55 | 58 | <spring-rdf-migration.version>2.0.0</spring-rdf-migration.version> |
56 | 59 | <rdf-resource-resolver.version>0.2.0</rdf-resource-resolver.version> |
57 | | - <spring-security-acl-mongodb.version>6.0.0</spring-security-acl-mongodb.version> |
| 60 | + <spring-security-acl-mongodb.version>6.0.4</spring-security-acl-mongodb.version> |
58 | 61 |
|
59 | 62 | <!-- Core --> |
60 | 63 | <springdoc-openapi-starter-webmvc-ui.version>3.0.3</springdoc-openapi-starter-webmvc-ui.version> |
|
68 | 71 | <jaxb-api.version>2.3.1</jaxb-api.version> |
69 | 72 | <git-commit-id-maven-plugin.version>10.0.0</git-commit-id-maven-plugin.version> |
70 | 73 | <maven-checkstyle-plugin.version>3.6.0</maven-checkstyle-plugin.version> |
71 | | - <checkstyle.version>13.3.0</checkstyle.version> |
| 74 | + <checkstyle.version>13.6.0</checkstyle.version> |
72 | 75 | <spring-javaformat-checkstyle.version>0.0.47</spring-javaformat-checkstyle.version> |
73 | | - <spotbugs-maven-plugin.version>4.9.8.2</spotbugs-maven-plugin.version> |
| 76 | + <spotbugs-maven-plugin.version>4.10.2.0</spotbugs-maven-plugin.version> |
74 | 77 |
|
75 | 78 | <!-- required for mockito to function properly (#890) --> |
76 | 79 | <argLine/> |
|
402 | 405 | <generateGitPropertiesFile>true</generateGitPropertiesFile> |
403 | 406 | <generateGitPropertiesFilename>${project.build.outputDirectory}/META-INF/git.properties</generateGitPropertiesFilename> |
404 | 407 | <commitIdGenerationMode>full</commitIdGenerationMode> |
| 408 | + <!-- include lightweight tags in git describe (github release creates lightweight tags) --> |
| 409 | + <gitDescribe> |
| 410 | + <tags>true</tags> |
| 411 | + </gitDescribe> |
405 | 412 | </configuration> |
406 | 413 | </plugin> |
407 | 414 | <plugin> |
|
0 commit comments