Skip to content

Commit

Permalink
Disable enunciate since it fails often, and for random, unfixable rea… (
Browse files Browse the repository at this point in the history
#2082)

* Disable enunciate since it fails often, and for random, unfixable reasons.

* formatting

---------

Co-authored-by: Ivan Bella <[email protected]>
Co-authored-by: hgklohr <[email protected]>
  • Loading branch information
3 people committed Apr 30, 2024
1 parent fd721ae commit 6fe37e8
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/enunciate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://enunciate.webcohesion.com/schemas/enunciate-2.9.1.xsd">
<api-classes>
<exclude pattern="datawave.webservice.atom.AtomServiceBean"/>
<include pattern="datawave.**"/>
<exclude pattern="datawave.webservice.atom.AtomServiceBean"/>
</api-classes>
<modules>
<docs includeApplicationPath="true" apiRelativePath="/" />
Expand Down
1 change: 1 addition & 0 deletions docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@
<goal>docs</goal>
</goals>
<configuration>
<skipEnunciate>true</skipEnunciate>
<docsDir>${project.build.outputDirectory}/enunciate</docsDir>
<sourcepath-includes>
<include>
Expand Down
2 changes: 1 addition & 1 deletion web-services/deploy/docs/docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<a href="#">API Documents</a>
<ul class="menu vertical">
<li><a href="javadocs/index.html">Javadoc</a></li>
<li><a href="apidocs/index.html">API Docs</a></li>
<!-- <li><a href="apidocs/index.html">API Docs</a></li>-->
</ul>
</li>
<li>
Expand Down
17 changes: 17 additions & 0 deletions web-services/deploy/docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,23 @@
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>create-enunciate-directory</id>
<goals>
<goal>run</goal>
</goals>
<phase>process-resources</phase>
<configuration>
<target>
<mkdir dir="${project.build.directory}/enunciate/enunciate" />
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
Expand Down

0 comments on commit 6fe37e8

Please sign in to comment.