-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
rmpestano
committed
Oct 23, 2016
1 parent
ba9ab9e
commit d985b5c
Showing
5 changed files
with
84 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
cukedoctor-maven-plugin/src/test/resources/html-docs-source-highlighter-pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.github.cukedoctor</groupId> | ||
<artifactId>cukedoctor-mojo</artifactId> | ||
<packaging>jar</packaging> | ||
<version>1.0-SNAPSHOT</version> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.github.cukedoctor</groupId> | ||
<artifactId>cukedoctor-maven-plugin</artifactId> | ||
<!--<version>0.1-SNAPSHOT</version>--> | ||
<configuration> | ||
<project implementation="com.github.cukedoctor.mojo.stub.CukedoctorMojoStub"/> | ||
<outputFileName>documentation</outputFileName> | ||
<outputDir>docs</outputDir> | ||
<format>html5</format> | ||
<toc>left</toc> | ||
<numbered>true</numbered> | ||
<sourceHighlighter>coderay</sourceHighlighter> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |