Skip to content

Commit 0b4a56f

Browse files
Migrated to new docs; fixes spring-projects#248
1 parent 8b7efcf commit 0b4a56f

40 files changed

+3715
-17
lines changed

README.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,4 +151,4 @@ added after the original pull request but before a merge.
151151
other target branch in the main project).
152152
* When writing a commit message please follow http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[these conventions],
153153
if you are fixing an existing issue please add `Fixes gh-XXXX` at the end of the commit
154-
message (where XXXX is the issue number).
154+
message (where XXXX is the issue number).

docs/pom.xml

+20-16
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<properties>
1515
<docs.main>spring-cloud-commons</docs.main>
1616
<main.basedir>${basedir}/..</main.basedir>
17-
<docs.whitelisted.branches>1.0.x</docs.whitelisted.branches>
17+
<docs.whitelisted.branches>1.0.x,2.0.x</docs.whitelisted.branches>
1818
</properties>
1919
<build>
2020
<plugins>
@@ -32,21 +32,25 @@
3232
<id>docs</id>
3333
<build>
3434
<plugins>
35-
<plugin>
36-
<groupId>org.asciidoctor</groupId>
37-
<artifactId>asciidoctor-maven-plugin</artifactId>
38-
<inherited>false</inherited>
39-
</plugin>
40-
<plugin>
41-
<groupId>org.apache.maven.plugins</groupId>
42-
<artifactId>maven-antrun-plugin</artifactId>
43-
<inherited>false</inherited>
44-
</plugin>
45-
<plugin>
46-
<groupId>org.codehaus.mojo</groupId>
47-
<artifactId>build-helper-maven-plugin</artifactId>
48-
<inherited>false</inherited>
49-
</plugin>
35+
<plugin>
36+
<groupId>org.asciidoctor</groupId>
37+
<artifactId>asciidoctor-maven-plugin</artifactId>
38+
<inherited>false</inherited>
39+
</plugin>
40+
<plugin>
41+
<groupId>com.agilejava.docbkx</groupId>
42+
<artifactId>docbkx-maven-plugin</artifactId>
43+
</plugin>
44+
<plugin>
45+
<groupId>org.apache.maven.plugins</groupId>
46+
<artifactId>maven-antrun-plugin</artifactId>
47+
<inherited>false</inherited>
48+
</plugin>
49+
<plugin>
50+
<groupId>org.codehaus.mojo</groupId>
51+
<artifactId>build-helper-maven-plugin</artifactId>
52+
<inherited>false</inherited>
53+
</plugin>
5054
</plugins>
5155
</build>
5256
</profile>
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/*
2+
code highlight CSS resemblign the Eclipse IDE default color schema
3+
@author Costin Leau
4+
*/
5+
6+
.hl-keyword {
7+
color: #7F0055;
8+
font-weight: bold;
9+
}
10+
11+
.hl-comment {
12+
color: #3F5F5F;
13+
font-style: italic;
14+
}
15+
16+
.hl-multiline-comment {
17+
color: #3F5FBF;
18+
font-style: italic;
19+
}
20+
21+
.hl-tag {
22+
color: #3F7F7F;
23+
}
24+
25+
.hl-attribute {
26+
color: #7F007F;
27+
}
28+
29+
.hl-value {
30+
color: #2A00FF;
31+
}
32+
33+
.hl-string {
34+
color: #2A00FF;
35+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
@IMPORT url("manual.css");
2+
3+
body.firstpage {
4+
background: url("../images/background.png") no-repeat center top;
5+
}
6+
7+
div.part h1 {
8+
border-top: none;
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@IMPORT url("manual.css");
2+
3+
body {
4+
background: url("../images/background.png") no-repeat center top;
5+
}
6+

0 commit comments

Comments
 (0)