aboutsummaryrefslogtreecommitdiffstats
path: root/client/pom.xml
diff options
context:
space:
mode:
authoryehzu <yehzu2@gmail.com>2019-12-12 13:32:06 +0800
committeryehzu <yehzu2@gmail.com>2019-12-12 16:47:39 +0800
commitd915a9ec3c90d6b72eac9dfd79c64d6b7ce90391 (patch)
treee3d2870c2724bfa1d1152684f388ee5dbed9b922 /client/pom.xml
parent875f6ce115086e606081fcee75e0585568b50a71 (diff)
dsl library for vespa search queries
Diffstat (limited to 'client/pom.xml')
-rw-r--r--client/pom.xml66
1 files changed, 66 insertions, 0 deletions
diff --git a/client/pom.xml b/client/pom.xml
new file mode 100644
index 00000000000..ded8a6a3ae0
--- /dev/null
+++ b/client/pom.xml
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<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>
+
+ <parent>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>parent</artifactId>
+ <version>7-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>client</artifactId>
+ <packaging>jar</packaging>
+ <version>7-SNAPSHOT</version>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>com.google.code.gson</groupId>
+ <artifactId>gson</artifactId>
+ <version>2.8.5</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-text</artifactId>
+ <version>1.6</version>
+ </dependency>
+ <dependency>
+ <groupId>org.spockframework</groupId>
+ <artifactId>spock-core</artifactId>
+ <version>1.3-groovy-2.5</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.groovy</groupId>
+ <artifactId>groovy-all</artifactId>
+ <!-- any version of Groovy \>= 1.8.2 should work here -->
+ <version>2.5.6</version>
+ <type>pom</type>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.gmavenplus</groupId>
+ <artifactId>gmavenplus-plugin</artifactId>
+ <version>1.7.0</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>addTestSources</goal>
+ <goal>compileTests</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>