-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
42 lines (27 loc) · 812 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
35
36
37
38
39
40
41
42
plugins {
id "java"
id "groovy"
// gradle plugin for running sphinx
id "kr.motd.sphinx" version "2.3.1"
}
description 'Sphinx site source files for my ReadTheDocs documentation site about PlantUML'
allprojects {
group 'com.ashleycaroline.plantuml'
version '1.0.1'
repositories {
mavenCentral()
}
apply plugin: 'groovy'
apply plugin: 'kr.motd.sphinx'
}
sphinx {
// Change the source directory.
// sourceDirectory = "${projectDir}/alternative-src/sphinx"
// Change the output directory.
// outputDirectory = "${project.buildDir}/alternative-site"
// Add environment variables.
// environments = ['ENV_FOO': 'value1', 'ENV_BAR': 'value2']
// env 'ENV_BAZ', 'value3'
// Add tags.
// tags 'tagA', 'tagB'
}