ARTEMIS-4478: have the docs reference the version used by the release

This commit is contained in:
Robbie Gemmell 2023-11-07 12:12:14 +00:00
parent b59813336e
commit 808272fc63
2 changed files with 5 additions and 2 deletions

View File

@ -374,7 +374,6 @@
<sectnums />
<idprefix />
<idseparator>-</idseparator>
<project-version>${project.version}</project-version>
<nofooter>true</nofooter>
<linkcss>true</linkcss>
<iconfont-remote>false</iconfont-remote>
@ -383,6 +382,10 @@
<prewrap>false</prewrap>
<!-- enable "experimental" for keyboard macros - https://docs.asciidoctor.org/asciidoc/latest/macros/keyboard-macro/ -->
<experimental>true</experimental>
<!-- Version substitution attributes -->
<project-version>${project.version}</project-version>
<log4j-version>${log4j.version}</log4j-version>
</attributes>
</configuration>
</plugin>

View File

@ -78,7 +78,7 @@ Taking Log4J2 as an example logging implementation, since it used by the broker,
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
<version>2.19.0</version>
<version>{log4j-version}</version>
</dependency>
----