Skip to content
This repository has been archived by the owner on May 15, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
srotman committed May 9, 2023
0 parents commit 9d692f4
Show file tree
Hide file tree
Showing 7 changed files with 766 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.gradle
build
41 changes: 41 additions & 0 deletions docToolchainConfig.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
outputPath = 'build'

inputPath = 'src/docs';

inputFiles = [
[file: 'root.adoc', formats: ['html','pdf']]
]

imageDirs = [
'images/.',
]

taskInputsDirs = [
"${inputPath}",
]

taskInputsFiles = []

//*****************************************************************************************

confluence = [:]

confluence.with {
input = [
[ file: "build/html5/root.html",
ancestorName: "docToolchain",
],
]
subpagesForSections = 2


api = 'https://<myconfluence.domain.com>/rest/api/'
spaceKey = '<myspace>'

pagePrefix = ''
pageSuffix = ''
pageVersionComment = ''
enableAttachments = false
pageLimit = 100
}

0 comments on commit 9d692f4

Please sign in to comment.