summaryrefslogtreecommitdiffstats
path: root/container-search-gui/pom.xml
diff options
context:
space:
mode:
authorHenrik <henrik.hoiness@online.no>2018-07-17 17:37:29 +0200
committerHenrik <henrik.hoiness@online.no>2018-07-17 17:37:29 +0200
commitce74309b3b548e6b25e6277ecd8fb9cc11918136 (patch)
tree3e62976208a96306233fe6f041e28266b9a953aa /container-search-gui/pom.xml
parenta22dbb93b39d20f52add81941ec1df9962d54b30 (diff)
Maven now gets the search api reference from the docs.vespa.ai when building vespa. Now only have one version of the doc.
Diffstat (limited to 'container-search-gui/pom.xml')
-rw-r--r--container-search-gui/pom.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/container-search-gui/pom.xml b/container-search-gui/pom.xml
index f598758e1de..847efecea88 100644
--- a/container-search-gui/pom.xml
+++ b/container-search-gui/pom.xml
@@ -48,6 +48,24 @@
<build>
<plugins>
<plugin>
+ <groupId>com.googlecode.maven-download-plugin</groupId>
+ <artifactId>download-maven-plugin</artifactId>
+ <version>1.3.0</version>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>wget</goal>
+ </goals>
+ <configuration>
+ <url>https://docs.vespa.ai/documentation/reference/search-api-reference.html</url>
+ <outputFileName>search-api-reference.html</outputFileName>
+ <outputDirectory>src/main/resources/gui/_includes/</outputDirectory>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>com.yahoo.vespa</groupId>
<artifactId>bundle-plugin</artifactId>
<extensions>true</extensions>