|  | 
| 301 | 301 |                     <plugin> | 
| 302 | 302 |                         <groupId>org.asciidoctor</groupId> | 
| 303 | 303 |                         <artifactId>asciidoctor-maven-plugin</artifactId> | 
|  | 304 | +                        <version>1.5.2</version> | 
|  | 305 | +                        <dependencies> | 
|  | 306 | +                            <dependency> | 
|  | 307 | +                                <groupId>org.asciidoctor</groupId> | 
|  | 308 | +                                <artifactId>asciidoctorj-pdf</artifactId> | 
|  | 309 | +                                <version>1.5.0-alpha.6</version> | 
|  | 310 | +                            </dependency> | 
|  | 311 | +                        </dependencies> | 
|  | 312 | +                        <configuration> | 
|  | 313 | +                            <sourceDirectory>src/main/asciidoc</sourceDirectory> | 
|  | 314 | +                            <baseDir>${project.basedir}</baseDir> | 
|  | 315 | +                            <imagesDir>src/main/asciidoc/images/</imagesDir> | 
|  | 316 | +                            <embedAssets>true</embedAssets> | 
|  | 317 | +                            <!-- eruby>erubis</eruby --> | 
|  | 318 | +                        </configuration> | 
| 304 | 319 |                         <executions> | 
| 305 | 320 |                             <execution> | 
| 306 | 321 |                                 <id>output-html</id> | 
| 307 |  | -                                <phase>generate-resources</phase> | 
|  | 322 | +                                <phase>prepare-package</phase> | 
| 308 | 323 |                                 <goals> | 
| 309 | 324 |                                     <goal>process-asciidoc</goal> | 
| 310 | 325 |                                 </goals> | 
| 311 | 326 |                                 <configuration> | 
| 312 | 327 |                                     <outputDirectory>target/docs</outputDirectory> | 
| 313 |  | -                                    <sourceHighlighter>highlightjs</sourceHighlighter> | 
| 314 |  | -                                    <!-- coderay --> | 
|  | 328 | +                                    <sourceHighlighter>coderay</sourceHighlighter> | 
| 315 | 329 |                                     <backend>html</backend> | 
| 316 |  | -                                    <embedAssets>true</embedAssets> | 
| 317 |  | -                                    <imagesDir>arc/main/asciidoc/images</imagesDir> | 
|  | 330 | +                                </configuration> | 
|  | 331 | +                            </execution> | 
|  | 332 | +                            <execution> | 
|  | 333 | +                                <id>output-pdf</id> | 
|  | 334 | +                                <phase>prepare-package</phase> | 
|  | 335 | +                                <goals> | 
|  | 336 | +                                    <goal>process-asciidoc</goal> | 
|  | 337 | +                                </goals> | 
|  | 338 | +                                <configuration> | 
|  | 339 | +                                    <backend>pdf</backend> | 
|  | 340 | +                                    <!-- WARNING callout bullets don't yet work with CodeRay --> | 
|  | 341 | +                                    <sourceHighlighter>coderay</sourceHighlighter> | 
|  | 342 | +                                    <attributes> | 
|  | 343 | +                                        <pagenums/> | 
|  | 344 | +                                        <toc/> | 
|  | 345 | +                                        <idprefix/> | 
|  | 346 | +                                        <idseparator>-</idseparator> | 
|  | 347 | +                                    </attributes> | 
| 318 | 348 |                                 </configuration> | 
| 319 | 349 |                             </execution> | 
| 320 | 350 |                         </executions> | 
|  | 
| 376 | 406 |                 <plugin> | 
| 377 | 407 |                     <groupId>org.codehaus.mojo</groupId> | 
| 378 | 408 |                     <artifactId>versions-maven-plugin</artifactId> | 
| 379 |  | -                    <configuration></configuration> | 
| 380 | 409 |                 </plugin> | 
| 381 | 410 |                 <plugin> | 
| 382 | 411 |                     <groupId>org.apache.maven.plugins</groupId> | 
|  | 
0 commit comments