Hi,
One thing I did notice is that it not renaming the .revealjs file and I still
have to do this:
<plugin>
<groupId>com.coderplus.maven.plugins</groupId>
<artifactId>copy-rename-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>rename-slide-file</id>
<phase>process-resources</phase>
<goals>
<goal>rename</goal>
</goals>
<configuration>
<sourceFile>${project.slides.directory}/${project.main.contentfile}.revealjs</sourceFile>
<destinationFile>${project.slides.directory}/${project.main.contentfile}.html</destinationFile>
</configuration>
</execution>
</executions>
</plugin>
Thanks,
Justin