diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-03 13:52:35 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-06 10:09:11 +0100 |
commit | 217df7e0bfef4aea30453ad2595702abecca57d7 (patch) | |
tree | adf16f132ea3feadc006b45aeeea575e07a9df79 /pom.xml | |
parent | 451cd62eac71a02f653521c6a40bdd7fb530df5f (diff) | |
download | aspectj-217df7e0bfef4aea30453ad2595702abecca57d7.tar.gz aspectj-217df7e0bfef4aea30453ad2595702abecca57d7.zip |
Remove 'imagesdir' from Asciidoctor Maven config
User relative paths for images instead.
In one case, we need to copy images from a subdirectory one level up,
because otherwise the images are only found in the included document,
but not in the single-page one including it from the subdirectory. In
all other cases, included ADOCs are located in the same directory as the
including document.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -304,6 +304,11 @@ </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-resources-plugin</artifactId> + <version>3.3.1</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M3</version> </plugin> @@ -419,7 +424,7 @@ <configuration> <attributes> <source-highlighter>coderay</source-highlighter> - <imagesdir>./images</imagesdir> + <!--<imagesdir>./images</imagesdir>--> <toc>left</toc> <icons>font</icons> </attributes> |