This is an automated email from the ASF dual-hosted git repository. dimuthuupe pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/airavata-mft.git
commit f4db19e06b6e221de47170d425dd3c685aebee09 Author: Dimuthu Wannipurage <[email protected]> AuthorDate: Thu Feb 2 13:23:33 2023 -0500 Adding missing dependencies to Agent --- agent/pom.xml | 5 +++++ agent/service/pom.xml | 9 +++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/agent/pom.xml b/agent/pom.xml index 676936a..8eff88b 100644 --- a/agent/pom.xml +++ b/agent/pom.xml @@ -43,6 +43,11 @@ <artifactId>protobuf-java</artifactId> <version>${protobuf.java}</version> </dependency> + <dependency> + <groupId>com.google.protobuf</groupId> + <artifactId>protobuf-java-util</artifactId> + <version>${protobuf.java}</version> + </dependency> </dependencies> <properties> diff --git a/agent/service/pom.xml b/agent/service/pom.xml index 0d1a5cb..c4bc494 100644 --- a/agent/service/pom.xml +++ b/agent/service/pom.xml @@ -49,6 +49,11 @@ <artifactId>netty-tcnative-boringssl-static</artifactId> <version>2.0.54.Final</version> </dependency> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>${guava.version}</version> + </dependency> <dependency> <groupId>org.apache.airavata</groupId> <artifactId>mft-scp-transport</artifactId> @@ -163,7 +168,7 @@ </dependency> </dependencies> - <!--build> + <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -188,7 +193,7 @@ </executions> </plugin> </plugins> - </build--> + </build> <properties> <maven.compiler.source>11</maven.compiler.source>
