Skip to content

Commit b719c7d

Browse files
justinmcleanlfrancke
authored andcommitted
Prepare for release of navigating incubator (#25)
* use rename plug in rather than output file so it work on other platforms * remove author info
1 parent 0738b8c commit b719c7d

3 files changed

Lines changed: 22 additions & 11 deletions

File tree

content/ApacheWay/NavigatingASFIncubation/pom.xml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,6 @@
213213
<sourceDirectory>src/main/asciidoc</sourceDirectory>
214214
<!-- Configure the target director to where will the output be generated -->
215215
<outputDirectory>${project.slides.directory}</outputDirectory>
216-
<!-- output file-->
217-
<outputFile>index.html</outputFile>
218216
<!-- Enable optional modules for generating diagrams and charts -->
219217
<requires>
220218
<require>asciidoctor-diagram</require>
@@ -303,6 +301,24 @@
303301
</execution>
304302
</executions>
305303
</plugin>
304+
<plugin>
305+
<groupId>com.coderplus.maven.plugins</groupId>
306+
<artifactId>copy-rename-maven-plugin</artifactId>
307+
<version>1.0</version>
308+
<executions>
309+
<execution>
310+
<id>rename-slide-file</id>
311+
<phase>process-resources</phase>
312+
<goals>
313+
<goal>rename</goal>
314+
</goals>
315+
<configuration>
316+
<sourceFile>${project.slides.directory}/${project.main.contentfile}.revealjs</sourceFile>
317+
<destinationFile>${project.slides.directory}/${project.main.contentfile}.html</destinationFile>
318+
</configuration>
319+
</execution>
320+
</executions>
321+
</plugin>
306322
</plugins>
307323
</build>
308324
</project>

content/ApacheWay/NavigatingASFIncubation/src/main/asciidoc/aboutme.adoc

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,4 @@
1717

1818
////
1919
20-
* V.P. Apache Incubator
21-
* Freelance developer - programming for 30 years
22-
* Incubator PMC plus a few others
23-
* Apache member
24-
* Mentor of several Apache projects
25-
* Reviewed 350+ incubator releases at Apache
20+
* TODO Fill in your own your info here

content/ApacheWay/NavigatingASFIncubation/src/main/asciidoc/index.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
== Navigating the ASF Incubator Process
2222
:description: 45 minute talk on the Apache Way and navigating a project through the incubator
2323
:keywords: Apache Way,Incubator
24-
:author: Justin Mclean
25-
:email: jmclean@apache.org
26-
:position: V.P. Apache Incubator
24+
:author: Your Name
25+
:email: Your email
26+
:position: Your Job title
2727
{author} +
2828
{position} +
2929
{email} +

0 commit comments

Comments
 (0)