|
34 | 34 | </developers> |
35 | 35 |
|
36 | 36 | <modules> |
37 | | - <module>proto</module> |
38 | 37 | <module>core</module> |
39 | 38 | <module>integrations</module> |
40 | 39 | <module>examples</module> |
|
54 | 53 | <grpc.version>1.9.0</grpc.version> |
55 | 54 | <jaxrs.version>2.1</jaxrs.version> |
56 | 55 | <micrometer.version>1.0.1</micrometer.version> |
| 56 | + <haystack-commons.version>1.0.37</haystack-commons.version> |
57 | 57 |
|
58 | 58 | <!--Plugin Properties --> |
59 | 59 | <maven-jacoco-plugin.version>0.7.9</maven-jacoco-plugin.version> |
60 | 60 | <maven-compiler-plugin.version>3.6.1</maven-compiler-plugin.version> |
61 | 61 | <maven-jar-plugin.version>3.0.2</maven-jar-plugin.version> |
62 | | - <maven-protobuf-plugin.version>3.3.0.1</maven-protobuf-plugin.version> |
63 | 62 | <maven-release-plugin.version>2.5.2</maven-release-plugin.version> |
64 | 63 | <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> |
65 | 64 | <maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version> |
|
128 | 127 | <artifactId>grpc-stub</artifactId> |
129 | 128 | <version>${grpc.version}</version> |
130 | 129 | </dependency> |
| 130 | + |
| 131 | + <dependency> |
| 132 | + <groupId>com.expedia.www</groupId> |
| 133 | + <artifactId>haystack-commons</artifactId> |
| 134 | + <version>${haystack-commons.version}</version> |
| 135 | + </dependency> |
| 136 | + |
131 | 137 | <dependency> |
132 | 138 | <groupId>io.grpc</groupId> |
133 | 139 | <artifactId>grpc-testing</artifactId> |
|
229 | 235 | </configuration> |
230 | 236 | </plugin> |
231 | 237 |
|
232 | | - <plugin> |
233 | | - <groupId>com.github.os72</groupId> |
234 | | - <artifactId>protoc-jar-maven-plugin</artifactId> |
235 | | - <version>${maven-protobuf-plugin.version}</version> |
236 | | - <executions> |
237 | | - <execution> |
238 | | - <phase>generate-sources</phase> |
239 | | - <goals> |
240 | | - <goal>run</goal> |
241 | | - </goals> |
242 | | - <configuration> |
243 | | - <protocArtifact>com.google.protobuf:protoc:3.0.0</protocArtifact> |
244 | | - <includeDirectories> |
245 | | - <include>${project.parent.basedir}/idl/proto</include> |
246 | | - </includeDirectories> |
247 | | - <inputDirectories> |
248 | | - <include>${project.parent.basedir}/idl/proto</include> |
249 | | - </inputDirectories> |
250 | | - <outputDirectory>${project.basedir}/target/generated-sources</outputDirectory> |
251 | | - <outputTargets> |
252 | | - <outputTarget> |
253 | | - <type>java</type> |
254 | | - </outputTarget> |
255 | | - <outputTarget> |
256 | | - <type>grpc-java</type> |
257 | | - <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.0.1</pluginArtifact> |
258 | | - </outputTarget> |
259 | | - </outputTargets> |
260 | | - </configuration> |
261 | | - </execution> |
262 | | - </executions> |
263 | | - </plugin> |
264 | | - |
265 | 238 | <plugin> |
266 | 239 | <groupId>org.apache.maven.plugins</groupId> |
267 | 240 | <artifactId>maven-source-plugin</artifactId> |
|
0 commit comments