Initial move over from i21 repo.
This commit is contained in:
23
docs/.project
Normal file
23
docs/.project
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>batch-docs</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.maven.ide.eclipse.maven2Builder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
<nature>org.maven.ide.eclipse.maven2Nature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
4
docs/.settings/org.eclipse.mylyn.tasks.ui.prefs
Normal file
4
docs/.settings/org.eclipse.mylyn.tasks.ui.prefs
Normal file
@@ -0,0 +1,4 @@
|
||||
#Sun Jul 08 09:33:19 BST 2007
|
||||
eclipse.preferences.version=1
|
||||
project.repository.kind=jira
|
||||
project.repository.url=http\://opensource.atlassian.com/projects/spring
|
||||
127
docs/pom.xml
Normal file
127
docs/pom.xml
Normal file
@@ -0,0 +1,127 @@
|
||||
<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>
|
||||
<artifactId>spring-batch-docs</artifactId>
|
||||
<name>Documentation</name>
|
||||
<packaging>pom</packaging>
|
||||
<description>Spring Batch Documentation - reference guide and user manuals.</description>
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.batch</groupId>
|
||||
<artifactId>spring-batch</artifactId>
|
||||
<version>1.0-m2-SNAPSHOT</version>
|
||||
<relativePath>..</relativePath>
|
||||
</parent>
|
||||
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>agilejava</id>
|
||||
<url>http://agilejava.com/maven</url>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>com.agilejava.docbkx</groupId>
|
||||
<artifactId>docbkx-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>single-page</id>
|
||||
<goals>
|
||||
<goal>generate-html</goal>
|
||||
<goal>generate-pdf</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<chunkedOutput>false</chunkedOutput>
|
||||
<htmlCustomization>${basedir}/src/docbkx/resources/xsl/html.xsl</htmlCustomization>
|
||||
<foCustomization>${basedir}/src/docbkx/resources/xsl/fopdf.xsl</foCustomization>
|
||||
<postProcess>
|
||||
<copy todir="${basedir}/target/site/reference">
|
||||
<fileset dir="${basedir}/target/docbkx">
|
||||
<include name="**/*.pdf" />
|
||||
</fileset>
|
||||
</copy>
|
||||
<copy todir="${basedir}/target/site/reference/html-single">
|
||||
<fileset dir="${basedir}/target/docbkx/html">
|
||||
<include name="**/*.html" />
|
||||
</fileset>
|
||||
</copy>
|
||||
<copy todir="${basedir}/target/site/reference/html-single">
|
||||
<fileset dir="${basedir}/src/docbkx/resources">
|
||||
<include name="**/*.css" />
|
||||
</fileset>
|
||||
</copy>
|
||||
<copy todir="${basedir}/target/site/reference/html-single">
|
||||
<fileset dir="${basedir}/src/site/resources/reference">
|
||||
<include name="**/*.png" />
|
||||
<include name="**/*.gif" />
|
||||
<include name="**/*.jpg" />
|
||||
</fileset>
|
||||
</copy>
|
||||
<move file="${basedir}/target/site/reference/pdf/index.pdf"
|
||||
tofile="${basedir}/target/site/reference/pdf/${artifactId}.pdf" failonerror="false" />
|
||||
</postProcess>
|
||||
</configuration>
|
||||
<phase>pre-site</phase>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>multi-page</id>
|
||||
<goals>
|
||||
<goal>generate-html</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<chunkedOutput>true</chunkedOutput>
|
||||
<htmlCustomization>${basedir}/src/docbkx/resources/xsl/html_chunk.xsl</htmlCustomization>
|
||||
<postProcess>
|
||||
<copy todir="${basedir}/target/site/reference">
|
||||
<fileset dir="${basedir}/target/docbkx">
|
||||
<include name="**/*.html" />
|
||||
</fileset>
|
||||
</copy>
|
||||
<copy todir="${basedir}/target/site/reference/html">
|
||||
<fileset dir="${basedir}/src/docbkx/resources">
|
||||
<include name="**/*.css" />
|
||||
<include name="**/*.png" />
|
||||
<include name="**/*.gif" />
|
||||
<include name="**/*.jpg" />
|
||||
</fileset>
|
||||
</copy>
|
||||
<copy todir="${basedir}/target/site/reference/html">
|
||||
<fileset dir="${basedir}/src/site/resources/reference">
|
||||
<include name="**/*.png" />
|
||||
<include name="**/*.gif" />
|
||||
<include name="**/*.jpg" />
|
||||
</fileset>
|
||||
</copy>
|
||||
</postProcess>
|
||||
</configuration>
|
||||
<phase>pre-site</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.docbook</groupId>
|
||||
<artifactId>docbook-xml</artifactId>
|
||||
<version>4.4</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<configuration>
|
||||
<includes>index.xml</includes>
|
||||
<htmlStylesheet>css/html.css</htmlStylesheet>
|
||||
<xincludeSupported>true</xincludeSupported>
|
||||
<sourceDirectory>${basedir}/src/site/docbook/reference</sourceDirectory>
|
||||
<entities>
|
||||
<entity>
|
||||
<name>version</name>
|
||||
<value>${version}</value>
|
||||
</entity>
|
||||
</entities>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
15
docs/src/site/apt/index.apt
Normal file
15
docs/src/site/apt/index.apt
Normal file
@@ -0,0 +1,15 @@
|
||||
-----
|
||||
Spring Batch Docsumentation
|
||||
-----
|
||||
Dave Syer
|
||||
-----
|
||||
Aug 2007
|
||||
-----
|
||||
|
||||
Spring Batch Documentation
|
||||
|
||||
If youare seeing this page you probably built Spring Batch from the
|
||||
SVN soure code. The real documentation is still work in progress
|
||||
and will be released here shortly. Meanwhile you can get the latest
|
||||
and greatest at the Spring Batch home page
|
||||
http://static.springframework.org/spring-batch/docs.
|
||||
28
docs/src/site/site.xml
Normal file
28
docs/src/site/site.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<project name="Spring Batch: ${project.name}">
|
||||
<bannerLeft>
|
||||
<name>Spring Batch: ${project.name}</name>
|
||||
</bannerLeft>
|
||||
<bannerRight>
|
||||
<src>images/shim.gif</src>
|
||||
</bannerRight>
|
||||
<poweredBy>
|
||||
<logo name="" href="" img="images/shim.gif"/>
|
||||
</poweredBy>
|
||||
<skin>
|
||||
<groupId>org.springframework.maven.skins</groupId>
|
||||
<artifactId>maven-spring-skin</artifactId>
|
||||
<version>1.0.3</version>
|
||||
</skin>
|
||||
<body>
|
||||
<links>
|
||||
<item name="Home" href="../index.html"/>
|
||||
<item name="${project.name}" href="index.html"/>
|
||||
</links>
|
||||
|
||||
<menu name="Project Documentation">
|
||||
<item name="${project.name}" href="index.html"/>
|
||||
</menu>
|
||||
${reports}
|
||||
</body>
|
||||
</project>
|
||||
Reference in New Issue
Block a user