You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
538 B
20 lines
538 B
# Example configuration for the languages 'ja' and 'fr'. |
|
|
|
# Directories to set up |
|
declare -A DIRECTORIES=( |
|
["ja"]="common glossary high-availability-guide image-guide install-guide user-guide user-guide-admin" |
|
["fr"]="common glossary user-guide" |
|
) |
|
|
|
# Books to build |
|
declare -A BOOKS=( |
|
["ja"]="high-availability-guide image-guide install-guide user-guide user-guide-admin" |
|
["fr"]="user-guide" |
|
) |
|
|
|
# Where does the top-level pom live? |
|
# Set to empty to not copy it. |
|
POM_FILE=doc/pom.xml |
|
|
|
# Location of doc dir |
|
DOC_DIR="doc/"
|
|
|