Skip to content
Snippets Groups Projects
Commit d48f8f9d authored by Thorsten Vitt's avatar Thorsten Vitt
Browse files

Build maven site via sphinx

parent c64bb4d7
Branches
Tags
No related merge requests found
...@@ -114,12 +114,13 @@ todo_include_todos = True ...@@ -114,12 +114,13 @@ todo_include_todos = True
# a list of builtin themes. # a list of builtin themes.
# html_theme = 'default' # html_theme = 'default'
import sphinx_rtd_theme try:
html_theme = "sphinx_rtd_theme" import sphinx_rtd_theme
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
except ImportError:
pass
#html_theme = "doctrine"
#html_theme_path = ['_theme']
# Theme options are theme-specific and customize the look and feel of a theme # Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the # further. For a list of options available for each theme, see the
......
...@@ -407,6 +407,33 @@ ...@@ -407,6 +407,33 @@
<classifier>${aggregator.classifier}</classifier> <classifier>${aggregator.classifier}</classifier>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.0</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.8</version>
<reportSets>
<reportSet>
<reports/>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.tomdz.maven</groupId>
<artifactId>sphinx-maven-plugin</artifactId>
<version>1.0.3</version>
<configuration>
<sourceDirectory>${basedir}/docs</sourceDirectory>
</configuration>
</plugin>
</reportPlugins>
</configuration>
</plugin>
</plugins> </plugins>
<resources> <resources>
<resource> <resource>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment