org.springframework.roo.deployment.support
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.deployment.support</artifactId>
<version>2.0.0.RELEASE</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.runtime</artifactId>
<version>2.0.0.RELEASE</version>
<relativePath>../../runtime</relativePath>
</parent>
<artifactId>org.springframework.roo.deployment.support</artifactId>
<packaging>pom</packaging>
<name>Spring Roo - Runtime - Deployment Support</name>
<url>http://static.springframework.org/spring-roo/site/index.html</url>
<distributionManagement>
<site>
<id>static.springsource.org</id>
<url>scp://static.springsource.org/var/www/domains/springsource.org/static/htdocs/spring-roo</url>
</site>
</distributionManagement>
<profiles>
<profile>
<id>release</id>
<activation>
<property>
<name>!skipRelease</name>
</property>
</activation>
<build>
<plugins>
<!--Maven site plugin-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.2</version>
</dependency>
</dependencies>
</plugin>
<!-- AsciiDoctor plugin-->
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>1.5.2</version>
<dependencies>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj</artifactId>
<version>1.5.2</version>
</dependency>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj-pdf</artifactId>
<version>1.5.0-alpha.6</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>output-html</id>
<phase>generate-resources</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>html5</backend>
<sourceHighlighter>highlightjs</sourceHighlighter>
<attributes>
<toc/>
<toc-placement>left</toc-placement>
<sectanchors>true</sectanchors>
<!-- set the idprefix to blank -->
<idprefix/>
<idseparator>-</idseparator>
<docinfo1>true</docinfo1>
</attributes>
</configuration>
</execution>
<execution>
<id>generate-pdf-doc</id>
<phase>generate-resources</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>pdf</backend>
<!--WARNING callout bullets don't yet work with CodeRay-->
<sourceHighlighter>coderay</sourceHighlighter>
<attributes>
<pagenums/>
<toc/>
<idprefix/>
<idseparator>-</idseparator>
</attributes>
</configuration>
</execution>
</executions>
<configuration>
<doctype>book</doctype>
<sourceDirectory>src/main/asciidoc</sourceDirectory>
<headerFooter>true</headerFooter>
<data-uri/>
<outputDirectory>target/generated-docs</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<reporting>
<excludeDefaults>true</excludeDefaults>
</reporting>
</project>