Skip to content

Commit

Permalink
Markdown to HTML for 'user guide' in packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
sschwartzman committed Feb 21, 2018
1 parent b7ce46d commit ee30f15
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,4 @@ nr-plugin-exec-mac-testing
scratchpad.txt
updateUnixMonitor.sh
logs
README.html
20 changes: 19 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,28 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.newrelic.experts</groupId>
<artifactId>unix-infra-monitor</artifactId>
<version>0.1.0</version>
<version>0.1.1</version>
<name>unix-infra-monitor</name>
<build>
<plugins>
<plugin>
<groupId>com.ruleoftech</groupId>
<artifactId>markdown-page-generator-plugin</artifactId>
<version>2.1.0</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<inputDirectory>${basedir}</inputDirectory>
<outputDirectory>${basedir}</outputDirectory>
<pegdownExtensions>TABLES,FENCED_CODE_BLOCKS,AUTOLINKS,EXTANCHORLINKS</pegdownExtensions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
Expand Down
2 changes: 1 addition & 1 deletion src/main/assembly/assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<source>README.md</source>
</file>
<file>
<source>README.pdf</source>
<source>README.html</source>
</file>
<file>
<source>pluginctl.sh</source>
Expand Down

0 comments on commit ee30f15

Please sign in to comment.