aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/pom.xml24
-rw-r--r--pom.xml7
2 files changed, 30 insertions, 1 deletions
diff --git a/docs/pom.xml b/docs/pom.xml
index e6c256dd9..d0726a217 100644
--- a/docs/pom.xml
+++ b/docs/pom.xml
@@ -23,6 +23,30 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-images-compiler-weaver</id>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>${project.build.directory}/html/developer</outputDirectory>
+ <resources>
+ <resource>
+ <directory>${project.basedir}/developer/compiler-weaver</directory>
+ <includes>
+ <include>*.gif</include>
+ </includes>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<executions>
diff --git a/pom.xml b/pom.xml
index 3b10e3bd1..3fd4a5ff8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>