sbc-docs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.restcomm</groupId>
<artifactId>sbc-docs</artifactId>
<version>1.0.50</version>
</dependency>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.restcomm</groupId>
<artifactId>restcomm-sbc</artifactId>
<version>1.0.50</version>
</parent>
<artifactId>sbc-docs</artifactId>
<name>RestComm SBC :: Docs :: ${project.artifactId}</name>
<properties>
<asciidoctor.maven.plugin.version>1.5.3</asciidoctor.maven.plugin.version>
<asciidoctorj.pdf.version>1.5.0-alpha.11</asciidoctorj.pdf.version>
<asciidoctorj.version>1.5.4</asciidoctorj.version>
<asciidoctorj.diagram.version>1.3.1</asciidoctorj.diagram.version>
<jruby.version>1.7.21</jruby.version>
</properties>
<build>
<resources>
<resource>
<directory>${basedir}/src/main/asciidoc</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>${asciidoctor.maven.plugin.version}</version>
<dependencies>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj-pdf</artifactId>
<version>${asciidoctorj.pdf.version}</version>
</dependency>
<!-- Comment this section to use the default jruby artifact provided by the plugin -->
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj-diagram</artifactId>
<version>${asciidoctorj.diagram.version}</version>
</dependency>
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby-complete</artifactId>
<version>${jruby.version}</version>
</dependency>
<!-- Comment this section to use the default AsciidoctorJ artifact provided by the plugin -->
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj</artifactId>
<version>${asciidoctorj.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>output-html-website</id>
<phase>generate-resources</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>html5</backend>
<outputDirectory>${project.build.directory}/generated-docs/html-website</outputDirectory>
<requires>
<require>asciidoctor-diagram</require>
</requires>
<attributes>
<imagesdir>./images/..</imagesdir>
<toc></toc>
<icons>font</icons>
<sectanchors>true</sectanchors>
<idprefix/>
<idseparator>-</idseparator>
<docinfo1>true</docinfo1>
<embedAssets>true</embedAssets>
<stylesheet>${basedir}/src/main/asciidoc/stylesheets/telestax.css</stylesheet>
<project-version>${project.version}</project-version>
<this-application>sbc </this-application>
<this-platform>Restcomm </this-platform>
<jee-platform>JBoss Application Server</jee-platform>
<this-issue.tracker.url>https://github.com/Restcomm/sbc/issues</this-issue.tracker.url>
<this.release.source.code.url>https://github.com/Restcomm/sbc</this.release.source.code.url>
<this.trunk.source.code.url>https://github.com/Restcomm/sbc</this.trunk.source.code.url>
<this.release.binary.url>https://github.com/Restcomm/sbc</this.release.binary.url>
</attributes>
<preserveDirectories>true</preserveDirectories>
</configuration>
</execution>
<execution>
<id>output-html-book</id>
<phase>generate-resources</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>html5</backend>
<outputDirectory>${project.build.directory}/generated-docs/html-book</outputDirectory>
<requires>
<require>asciidoctor-diagram</require>
</requires>
<attributes>
<!-- <imagesdir>./images/</imagesdir>-->
<toc></toc>
<icons>font</icons>
<sectanchors>true</sectanchors>
<idprefix/>
<idseparator>-</idseparator>
<docinfo1>false</docinfo1>
<embedAssets>true</embedAssets>
<project-version>${project.version}</project-version>
<this-application>sbc </this-application>
<this-platform>Restcomm </this-platform>
<jee-platform>JBoss Application Server</jee-platform>
<this-issue.tracker.url>https://github.com/Restcomm/sbc/issues</this-issue.tracker.url>
<this.release.source.code.url>https://github.com/Restcomm/sbc</this.release.source.code.url>
<this.trunk.source.code.url>https://github.com/Restcomm/sbc</this.trunk.source.code.url>
<this.release.binary.url>https://github.com/Restcomm/sbc</this.release.binary.url>
</attributes>
<preserveDirectories>true</preserveDirectories>
</configuration>
</execution>
<execution>
<id>generate-pdf-doc</id>
<phase>generate-resources</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>pdf</backend>
<outputDirectory>${project.build.directory}/generated-docs/pdf</outputDirectory>
<requires>
<require>asciidoctor-diagram</require>
</requires>
<!-- Since 1.5.0-alpha.9 PDF back-end can use 'rouge' as well as 'coderay'
source highlighting -->
<sourceHighlighter>rouge</sourceHighlighter>
<attributes>
<imagesdir>./images/..</imagesdir>-->
<icons>font</icons>
<pagenums/>
<toc/>
<idprefix/>
<idseparator>-</idseparator>
<project-version>${project.version}</project-version>
<this-application>sbc </this-application>
<this-platform>Restcomm </this-platform>
<jee-platform>JBoss Application Server</jee-platform>
<this-issue.tracker.url>https://github.com/Restcomm/sbc/issues</this-issue.tracker.url>
<this.release.source.code.url>https://github.com/Restcomm/sbc</this.release.source.code.url>
<this.trunk.source.code.url>https://github.com/Restcomm/sbc</this.trunk.source.code.url>
<this.release.binary.url>https://github.com/Restcomm/sbc</this.release.binary.url>
</attributes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>