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
No related branches found
No related tags found
No related merge requests found
......@@ -114,12 +114,13 @@ todo_include_todos = True
# a list of builtin themes.
# html_theme = 'default'
import sphinx_rtd_theme
html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
try:
import sphinx_rtd_theme
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
# further. For a list of options available for each theme, see the
......
......@@ -407,6 +407,33 @@
<classifier>${aggregator.classifier}</classifier>
</configuration>
</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>
<resources>
<resource>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment