summaryrefslogtreecommitdiffstats
path: root/container-search-gui/pom.xml
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-07-19 09:27:15 +0200
committerGitHub <noreply@github.com>2018-07-19 09:27:15 +0200
commit2a2ae52250c5cbcf2a83fb72e020343b59bb237f (patch)
tree68f3d2c11257a526ae0ad0e7b74bb71668b2fa47 /container-search-gui/pom.xml
parent47fc7619bfd9e0c870fcf9721da60d53f2831cd5 (diff)
parentb0c1298063d8a6a0a4f3b5c4df0e6058f845d49d (diff)
Merge pull request #6411 from vespa-engine/henrhoi/get-search-reference-api-on-build
henrhoi/get-search-reference-api-on-build
Diffstat (limited to 'container-search-gui/pom.xml')
-rw-r--r--container-search-gui/pom.xml20
1 files changed, 19 insertions, 1 deletions
diff --git a/container-search-gui/pom.xml b/container-search-gui/pom.xml
index f598758e1de..aa3a696b786 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>prepare-package</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>${project.build.outputDirectory}/gui/_includes/</outputDirectory>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>com.yahoo.vespa</groupId>
<artifactId>bundle-plugin</artifactId>
<extensions>true</extensions>
@@ -55,4 +73,4 @@
</plugins>
</build>
-</project> \ No newline at end of file
+</project>