Update to new docs standards

This commit is contained in:
Dave Syer
2017-09-15 11:44:25 +01:00
parent fe89d91c8c
commit 976854929e
3 changed files with 28 additions and 19 deletions

View File

@@ -54,7 +54,7 @@ then turning them into `@Beans` that can be wrapped as above.
isolated classloader, so that you can pack them together in a single isolated classloader, so that you can pack them together in a single
JVM. JVM.
4. Adapters for https://github.com/markfisher/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-aws[AWS Lambda], https://github.com/markfisher/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk[Apache OpenWhisk] and possibly other "serverless" service providers. 4. Adapters for https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-aws[AWS Lambda], https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk[Apache OpenWhisk] and possibly other "serverless" service providers.
== Getting Started == Getting Started

View File

@@ -19,7 +19,7 @@
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<!--skip deploy (this is just a test module) --> <!--skip deploy -->
<artifactId>maven-deploy-plugin</artifactId> <artifactId>maven-deploy-plugin</artifactId>
<configuration> <configuration>
<skip>true</skip> <skip>true</skip>
@@ -32,22 +32,31 @@
<id>docs</id> <id>docs</id>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.asciidoctor</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId>
<inherited>false</inherited> <inherited>false</inherited>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.asciidoctor</groupId>
<artifactId>maven-antrun-plugin</artifactId> <artifactId>asciidoctor-maven-plugin</artifactId>
<inherited>false</inherited> <inherited>false</inherited>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>com.agilejava.docbkx</groupId>
<artifactId>build-helper-maven-plugin</artifactId> <artifactId>docbkx-maven-plugin</artifactId>
<inherited>false</inherited> </plugin>
</plugin> <plugin>
</plugins> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<inherited>false</inherited>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<inherited>false</inherited>
</plugin>
</plugins>
</build> </build>
</profile> </profile>
</profiles> </profiles>

View File

@@ -48,4 +48,4 @@ then turning them into `@Beans` that can be wrapped as above.
isolated classloader, so that you can pack them together in a single isolated classloader, so that you can pack them together in a single
JVM. JVM.
4. Adapters for https://github.com/markfisher/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-aws[AWS Lambda], https://github.com/markfisher/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk[Apache OpenWhisk] and possibly other "serverless" service providers. 4. Adapters for https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-aws[AWS Lambda], https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk[Apache OpenWhisk] and possibly other "serverless" service providers.