File tree Expand file tree Collapse file tree 7 files changed +102
-1
lines changed
src/main/java/io/spring/asciidoctor/backend Expand file tree Collapse file tree 7 files changed +102
-1
lines changed Original file line number Diff line number Diff line change
1
+ java-baseline=8
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ org.gradle.parallel=true
5
5
6
6
asciidoctorjVersion =2.4.1
7
7
asciidoctorjPdfVersion =1.5.3
8
- springJavaFormatVersion =0.0.27
8
+ springJavaFormatVersion =0.0.35
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2021-2023 the original author or authors.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * https://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Support for rewriting anchors to avoid broken links across documentation versions.
19
+ */
20
+ package io .spring .asciidoctor .backend .anchorrewrite ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2021-2023 the original author or authors.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * https://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Tools for working with included code.
19
+ */
20
+ package io .spring .asciidoctor .backend .codetools ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2021-2023 the original author or authors.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * https://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Support for convention-based code inclusion.
19
+ */
20
+ package io .spring .asciidoctor .backend .includecode ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2021-2023 the original author or authors.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * https://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Language support.
19
+ */
20
+ package io .spring .asciidoctor .backend .language ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2021-2023 the original author or authors.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * https://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Central classes of the custom backend.
19
+ */
20
+ package io .spring .asciidoctor .backend ;
You can’t perform that action at this time.
0 commit comments