Dmitry Jemerov | 0783f6f | 2015-01-15 14:59:50 +0100 | [diff] [blame] | 1 | <project name="Dokka" default="document"> |
| 2 | <!-- Demonstrates the usage of the Dokka Ant task. Assumes Dokka has already been compiled --> |
| 3 | |
| 4 | <typedef resource="dokka-antlib.xml" classpath="out/artifacts/dokka.jar"/> |
| 5 | |
| 6 | <target name="document"> |
Dmitry Jemerov | f338bc0 | 2015-01-15 18:34:23 +0100 | [diff] [blame] | 7 | <dokka src="src" outputdir="doc" modulename="dokka"> |
| 8 | <sourcelink path="." url="https://github.com/orangy/dokka/blob/master" linesuffix="#L"/> |
| 9 | </dokka> |
Dmitry Jemerov | 0783f6f | 2015-01-15 14:59:50 +0100 | [diff] [blame] | 10 | </target> |
| 11 | </project> |