aboutsummaryrefslogtreecommitdiffstats
path: root/sample-apps
diff options
context:
space:
mode:
authorKristian Aune <kraune@yahoo-inc.com>2017-07-12 12:48:35 +0200
committerKristian Aune <kraune@yahoo-inc.com>2017-07-12 12:48:35 +0200
commitc34dbdb829c001e7ec9e49c6cd1b376285b1f11c (patch)
treeb9810b2114373b06ae55afc296a1853a5d4316f9 /sample-apps
parent9f9bd607d5dd9ac225f098cccf9dace3cb5931a6 (diff)
Build all sample apps
- rename artifacts to same name as module (i.e. subdirectory) - add missing apps to build
Diffstat (limited to 'sample-apps')
-rw-r--r--sample-apps/basic-search-tensor/pom.xml2
-rw-r--r--sample-apps/blog-recommendation/pom.xml3
-rw-r--r--sample-apps/blog-search/pom.xml2
-rw-r--r--sample-apps/boolean-search/pom.xml3
-rw-r--r--sample-apps/http-api-using-request-handlers-and-processors/pom.xml2
-rw-r--r--sample-apps/http-api-using-searcher/pom.xml2
-rw-r--r--sample-apps/pom.xml2
7 files changed, 8 insertions, 8 deletions
diff --git a/sample-apps/basic-search-tensor/pom.xml b/sample-apps/basic-search-tensor/pom.xml
index bc9554f9ef4..9b6fab87094 100644
--- a/sample-apps/basic-search-tensor/pom.xml
+++ b/sample-apps/basic-search-tensor/pom.xml
@@ -6,7 +6,7 @@
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.yahoo.example</groupId>
- <artifactId>basic-search-java</artifactId>
+ <artifactId>basic-search-tensor</artifactId>
<version>1.0.1</version>
<packaging>container-plugin</packaging> <!-- Use Vespa packaging -->
diff --git a/sample-apps/blog-recommendation/pom.xml b/sample-apps/blog-recommendation/pom.xml
index 2f1582d4fbe..0f22cefa807 100644
--- a/sample-apps/blog-recommendation/pom.xml
+++ b/sample-apps/blog-recommendation/pom.xml
@@ -3,10 +3,9 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.yahoo.example</groupId>
- <artifactId>recommendation</artifactId>
+ <artifactId>blog-recommendation</artifactId>
<packaging>container-plugin</packaging>
<version>0.0.1</version>
- <name>application</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
diff --git a/sample-apps/blog-search/pom.xml b/sample-apps/blog-search/pom.xml
index 71a02075a6b..7702dab2d3f 100644
--- a/sample-apps/blog-search/pom.xml
+++ b/sample-apps/blog-search/pom.xml
@@ -6,7 +6,7 @@
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.yahoo.example</groupId>
- <artifactId>search</artifactId>
+ <artifactId>blog-search</artifactId>
<packaging>container-plugin</packaging>
<version>0.0.1</version>
diff --git a/sample-apps/boolean-search/pom.xml b/sample-apps/boolean-search/pom.xml
index 944511e37b2..3a77ee78e55 100644
--- a/sample-apps/boolean-search/pom.xml
+++ b/sample-apps/boolean-search/pom.xml
@@ -3,10 +3,9 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.yahoo.example</groupId>
- <artifactId>boolean-application</artifactId>
+ <artifactId>boolean-search</artifactId>
<packaging>container-plugin</packaging>
<version>1.0.0</version>
- <name>application</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
diff --git a/sample-apps/http-api-using-request-handlers-and-processors/pom.xml b/sample-apps/http-api-using-request-handlers-and-processors/pom.xml
index 6e7d0da75db..81896b1d64f 100644
--- a/sample-apps/http-api-using-request-handlers-and-processors/pom.xml
+++ b/sample-apps/http-api-using-request-handlers-and-processors/pom.xml
@@ -6,7 +6,7 @@
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.yahoo.demo</groupId>
- <artifactId>sample-app-http-api-processor</artifactId>
+ <artifactId>http-api-using-request-handlers-and-processors</artifactId>
<version>1.0.1</version>
<packaging>container-plugin</packaging> <!-- Use Vespa packaging -->
diff --git a/sample-apps/http-api-using-searcher/pom.xml b/sample-apps/http-api-using-searcher/pom.xml
index c8e222fae4b..64d9b8d0ed6 100644
--- a/sample-apps/http-api-using-searcher/pom.xml
+++ b/sample-apps/http-api-using-searcher/pom.xml
@@ -6,7 +6,7 @@
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.yahoo.demo</groupId>
- <artifactId>sample-app-http-api-searcher</artifactId>
+ <artifactId>http-api-using-searcher</artifactId>
<version>1.0.1</version>
<packaging>container-plugin</packaging> <!-- Use Vespa packaging -->
diff --git a/sample-apps/pom.xml b/sample-apps/pom.xml
index cd054953152..44756776a5f 100644
--- a/sample-apps/pom.xml
+++ b/sample-apps/pom.xml
@@ -11,7 +11,9 @@
<modules>
<module>basic-search-java</module>
+ <module>basic-search-tensor</module>
<module>blog-recommendation</module>
+ <module>blog-search</module>
<module>boolean-search</module>
<module>http-api-using-request-handlers-and-processors</module>
<module>http-api-using-searcher</module>