File tree Expand file tree Collapse file tree 1 file changed +56
-7
lines changed Expand file tree Collapse file tree 1 file changed +56
-7
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,38 @@ You can use the https://github.com/asciidoctor/asciidoctor-maven-plugin[Asciidoc
34
34
</plugin>
35
35
----
36
36
37
+ You will probably also need to add the Spring Maven repository:
38
+
39
+ [source,xml]
40
+ ----
41
+ <repositories>
42
+ <repository>
43
+ <id>spring-release</id>
44
+ <name>Spring Releases</name>
45
+ <url>https://repo.spring.io/release</url>
46
+ <snapshots>
47
+ <enabled>false</enabled>
48
+ </snapshots>
49
+ </repository>
50
+ </repositories>
51
+ ----
52
+
53
+ or for milestones:
54
+
55
+ [source,xml]
56
+ ----
57
+ <repositories>
58
+ <repository>
59
+ <id>spring-milestones</id>
60
+ <name>Spring Milestones</name>
61
+ <url>https://repo.spring.io/milestone</url>
62
+ <snapshots>
63
+ <enabled>false</enabled>
64
+ </snapshots>
65
+ </repository>
66
+ </repositories>
67
+ ----
68
+
37
69
38
70
39
71
== Gradle build integration
@@ -45,13 +77,6 @@ plugins {
45
77
id 'org.asciidoctor.jvm.convert' version '3.1.0'
46
78
}
47
79
48
- repositories {
49
- mavenCentral()
50
- maven {
51
- url "https://repo.spring.io/release"
52
- }
53
- }
54
-
55
80
configurations {
56
81
asciidoctorExtensions
57
82
}
@@ -69,6 +94,30 @@ asciidoctor {
69
94
}
70
95
----
71
96
97
+ You will probably also need to add the Spring Maven repository:
98
+
99
+ [source,gradle]
100
+ ----
101
+ repositories {
102
+ mavenCentral()
103
+ maven {
104
+ url "https://repo.spring.io/release"
105
+ }
106
+ }
107
+ ----
108
+
109
+ or for milestones:
110
+
111
+ [source,gradle]
112
+ ----
113
+ repositories {
114
+ mavenCentral()
115
+ maven {
116
+ url "https://repo.spring.io/milestone"
117
+ }
118
+ }
119
+ ----
120
+
72
121
73
122
74
123
== Features
You can’t perform that action at this time.
0 commit comments