Skip to content

Commit

Permalink
#303: Change phase during resource filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
ottlinger committed Aug 13, 2023
1 parent 743085a commit 259ce8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,6 @@
</execution>
</executions>
</plugin>
<!-- copy Version.java out of normal resource copying to avoid eclipse errors -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
Expand All @@ -389,16 +388,17 @@
<goals>
<goal>copy-resources</goal>
</goals>
<phase>site</phase>
<phase>process-resources</phase>
<configuration>
<resources>
<resource>
<directory>${project.build.directory}/webpage/logo/</directory>
<directory>${basedir}/webpage/logo/</directory>
</resource>
</resources>
<outputDirectory>${project.build.directory}/target/site/img/</outputDirectory>
<outputDirectory>${basedir}/target/site/img/</outputDirectory>
</configuration>
</execution>
<!-- copy Version.java out of normal resource copying to avoid eclipse errors -->
<execution>
<id>copy-version-resources</id>
<phase>process-resources</phase>
Expand Down
2 changes: 1 addition & 1 deletion src/site/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ under the License.
<topBarIcon>
<name>SpamSchutz logo</name>
<alt>SpamSchutz</alt>
<src>postal-horn.png</src>
<src>img/postal-horn.png</src>
<href>/index.html</href>
</topBarIcon>
<gitHub>
Expand Down

0 comments on commit 259ce8e

Please sign in to comment.