This is an automated email from the ASF dual-hosted git repository. isjarana pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/airavata-data-lake.git
commit 458650995b1c31e2e118f3cfe441cadf780b9478 Author: Isuru Ranawaka <[email protected]> AuthorDate: Sun May 23 11:51:32 2021 -0400 Fix build errors --- .../data-orchestrator-api-server/pom.xml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/data-orchestrator/data-orchestrator-service/data-orchestrator-api-server/pom.xml b/data-orchestrator/data-orchestrator-service/data-orchestrator-api-server/pom.xml index 5ec2657..a47e6d9 100644 --- a/data-orchestrator/data-orchestrator-service/data-orchestrator-api-server/pom.xml +++ b/data-orchestrator/data-orchestrator-service/data-orchestrator-api-server/pom.xml @@ -46,6 +46,12 @@ </dependency> <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-data-jpa</artifactId> + <version>2.4.5</version> + </dependency> + + <dependency> <groupId>net.sf.dozer</groupId> <artifactId>dozer</artifactId> <version>5.5.1</version> @@ -57,11 +63,11 @@ <artifactId>mysql-connector-java</artifactId> <version>8.0.18</version> </dependency> -<!-- <dependency>--> -<!-- <groupId>javax.persistence</groupId>--> -<!-- <artifactId>persistence-api</artifactId>--> -<!-- <version>1.0.2</version>--> -<!-- </dependency>--> + <dependency> + <groupId>javax.persistence</groupId> + <artifactId>persistence-api</artifactId> + <version>1.0.2</version> + </dependency> <dependency> <groupId>org.apache.airavata.data.lake</groupId>
