summaryrefslogtreecommitdiffstats
path: root/parent
diff options
context:
space:
mode:
authorOlli Virtanen <olli.virtanen@oath.com>2019-03-19 22:25:46 +0100
committerOlli Virtanen <olli.virtanen@oath.com>2019-03-19 22:25:46 +0100
commit3594d15ab25fe245f76e7563f12b4f5797b985c7 (patch)
tree027ec7a4d220622a5629c78aea210d49d465352b /parent
parent723ba3b84f4df4827686246bbec54a1cee008e23 (diff)
Search over protobuf + jrt
Diffstat (limited to 'parent')
-rw-r--r--parent/pom.xml26
1 files changed, 21 insertions, 5 deletions
diff --git a/parent/pom.xml b/parent/pom.xml
index 2e0bbf1b3ad..2eb713a4514 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -263,6 +263,27 @@
</executions>
</plugin>
<plugin>
+ <groupId>com.github.os72</groupId>
+ <artifactId>protoc-jar-maven-plugin</artifactId>
+ <version>3.6.0.2</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <addSources>main</addSources>
+ <outputDirectory>${project.build.directory}/generated-sources/protobuf</outputDirectory>
+ <inputDirectories>
+ <include>src/main/protobuf</include>
+ <include>src/protobuf</include>
+ </inputDirectories>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>com.yahoo.vespa</groupId>
<artifactId>abi-check-plugin</artifactId>
<version>${project.version}</version>
@@ -412,11 +433,6 @@
<version>${asm.version}</version>
</dependency>
<dependency>
- <groupId>com.google.protobuf</groupId>
- <artifactId>protobuf-java</artifactId>
- <version>3.4.0</version>
- </dependency>
- <dependency>
<groupId>com.goldmansachs</groupId>
<artifactId>gs-collections</artifactId>
<version>6.1.0</version>