Skip to content

Commit

Permalink
Merge f8a2609 into 8171a1e
Browse files Browse the repository at this point in the history
  • Loading branch information
ollin committed Aug 21, 2014
2 parents 8171a1e + f8a2609 commit eec4804
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ jdk:
- openjdk6
notifications:
irc: "irc.freenode.org#asciidoctor"
script:
- mvn clean test jacoco:report
after_success:
- mvn coveralls:jacoco
3 changes: 3 additions & 0 deletions README.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ endif::awestruct[]

{asciidoclet-src-ref}[Asciidoclet] is a Javadoc Doclet based on Asciidoctor that lets you write Javadoc in the AsciiDoc syntax.

image:http://img.shields.io/travis/asciidoctor/asciidoclet/master.svg["Build Status", link="https://travis-ci.org/asciidoctor/asciidoclet"]
image:http://img.shields.io/coveralls/asciidoctor/asciidoclet/master.svg["Coverage Status", link="https://coveralls.io/r/asciidoctor/asciidoclet"]

== Introduction

Traditionally, Javadocs have mixed minor markup with HTML which, if you're writing for HTML Javadoc output, becomes unreadable and hard to write over time.
Expand Down
18 changes: 18 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,24 @@
<strictCheck>true</strictCheck>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>2.2.0</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.1.201405082137</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit eec4804

Please sign in to comment.