This commit also adds scaling diagrams [1] to Figures.ppt. Those diagrams were not under source control. [1]: https://docs.spring.io/spring-batch/docs/current/reference/html/spring-batch-integration.html#externalizing-batch-process-execution
124 lines
5.4 KiB
XML
124 lines
5.4 KiB
XML
<?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.batch</groupId>
|
|
<artifactId>spring-batch</artifactId>
|
|
<version>5.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>spring-batch-docs</artifactId>
|
|
<name>Spring Batch Docs</name>
|
|
<description>Spring Batch documentation</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.spring.docresources</groupId>
|
|
<artifactId>spring-doc-resources</artifactId>
|
|
<version>0.2.5</version>
|
|
<type>zip</type>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>unpack-resources</id>
|
|
<phase>site</phase>
|
|
<goals>
|
|
<goal>unpack-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>io.spring.docresources</includeGroupIds>
|
|
<includeArtifactIds>spring-doc-resources</includeArtifactIds>
|
|
<includeTypes>zip</includeTypes>
|
|
<excludeTransitive>true</excludeTransitive>
|
|
<outputDirectory>${project.build.directory}/asciidoc</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.asciidoctor</groupId>
|
|
<artifactId>asciidoctor-maven-plugin</artifactId>
|
|
<version>2.1.0</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.asciidoctor</groupId>
|
|
<artifactId>asciidoctorj-pdf</artifactId>
|
|
<version>1.5.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<configuration>
|
|
<sourceDirectory>${project.basedir}/src/main/asciidoc</sourceDirectory>
|
|
<outputDirectory>${project.build.directory}/asciidoc</outputDirectory>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>generate-html</id>
|
|
<phase>site</phase>
|
|
<goals>
|
|
<goal>process-asciidoc</goal>
|
|
</goals>
|
|
<configuration>
|
|
<backend>html5</backend>
|
|
<doctype>book</doctype>
|
|
<sourceHighlighter>highlight.js</sourceHighlighter>
|
|
<attributes>
|
|
<docinfo>shared</docinfo>
|
|
<stylesdir>css/</stylesdir>
|
|
<stylesheet>spring.css</stylesheet>
|
|
<linkcss>true</linkcss>
|
|
<icons>font</icons>
|
|
<sectanchors/>
|
|
<highlightjsdir>js/highlight</highlightjsdir>
|
|
<highlightjs-theme>github</highlightjs-theme>
|
|
<idprefix/>
|
|
<idseparator>-</idseparator>
|
|
<spring-version>${project.version}</spring-version>
|
|
<revnumber>${project.version}</revnumber>
|
|
<allow-uri-read/>
|
|
</attributes>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>generate-pdf</id>
|
|
<phase>site</phase>
|
|
<goals>
|
|
<goal>process-asciidoc</goal>
|
|
</goals>
|
|
<configuration>
|
|
<backend>pdf</backend>
|
|
<doctype>book</doctype>
|
|
<attributes>
|
|
<icons>font</icons>
|
|
<pagenums />
|
|
<sectnums />
|
|
<sectanchors />
|
|
<toc />
|
|
<source-highlighter>coderay</source-highlighter>
|
|
<project-version>${project.version}</project-version>
|
|
<revnumber>${project.version}</revnumber>
|
|
</attributes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spring-releases</id>
|
|
<name>Spring Releases</name>
|
|
<url>https://repo.spring.io/libs-release</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
</project> |