forked from CherokeeLanguage/Cherokee-Language-Lessons-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (27 loc) · 838 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
plugins {
id "idea"
id 'ru.vyarus.mkdocs'
id 'ru.vyarus.use-python'
}
repositories {
mavenCentral()
google()
maven { url 'https://jitpack.io' }
}
idea.module.name = "Cherokee Language Lessons 1"
python {
pip 'pip:22.2.1'
pip "mkdocs-awesome-pages-plugin:2.8.0"
pip 'mkdocs-semiliterate:0.5.0' // used to pull in documentation from submodules and include in repo documentation
pip 'mkdocs-print-site-plugin:2.3.4' // To enable download of documentation as a PDF
pip 'mkdocs-graphviz:1.4.4' // for inline graphs using graphviz
pip 'mkdocs-video:1.3.0' // for video embedding
pip 'mkdocs-autorefs:0.4.1'
pip 'mkdocs:1.3.1'
pip 'mkdocs-material:8.3.9'
pip 'pygments:2.12.0'
pip 'pymdown-extensions:9.5'
}
mkdocs.sourcesDir = "."
mkdocs.publish.docPath = ''
mkdocs.strict = true