Bad tag names in asciidoc includes

Fixes gh-44
This commit is contained in:
Dave Syer
2020-01-06 13:35:27 +00:00
parent 393498a446
commit fc3658ad64
2 changed files with 6 additions and 14 deletions

View File

@@ -131,15 +131,6 @@ include::complete/build.gradle[tags=dependency]
Note the exclusion of Tomcat. If Tomcat is allowed to run in this build, you get a port
collision with the Tomcat instance that provides the country data.
The following listing shows the configuration you need to add in Gradle:
====
[source,xml,indent=0]
----
include::complete/build.gradle[tags=configuration]
----
====
The following listing shows the `bootJar` section you need to add in Gradle:
====

View File

@@ -6,7 +6,8 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
<!-- lookup parent from repository -->
<relativePath/>
</parent>
<groupId>com.example</groupId>
<artifactId>consuming-web-service</artifactId>
@@ -23,7 +24,7 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<!-- tag::dependency -->
<!-- tag::dependency[] -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web-services</artifactId>
@@ -34,7 +35,7 @@
</exclusion>
</exclusions>
</dependency>
<!-- end::dependency -->
<!-- end::dependency[] -->
<dependency>
<groupId>org.springframework.boot</groupId>
@@ -49,7 +50,7 @@
</dependency>
</dependencies>
<!-- tag::profile -->
<!-- tag::profile[] -->
<profiles>
<profile>
<id>java11</id>
@@ -65,7 +66,7 @@
</dependencies>
</profile>
</profiles>
<!-- end::profile -->
<!-- end::profile[] -->
<build>
<plugins>