diff options
author | Niranjana <niranjana.y60@wipro.com> | 2021-05-06 11:00:56 +0000 |
---|---|---|
committer | Niranjana <niranjana.y60@wipro.com> | 2021-05-06 11:00:56 +0000 |
commit | 6bff68d952ae2a22a24b2b5554f06df2d8c6adbc (patch) | |
tree | d2ed2bfac3817509faed6b2ca52f36d37519cfe4 /components/datalake-handler | |
parent | d3e11d25093e5fee3aade9040cd8c6b09947ece3 (diff) |
Fix jar and file not found errors1.1.1-datalake-des
Issue-ID: DCAEGEN2-2329
Signed-off-by: Niranjana <niranjana.y60@wipro.com>
Change-Id: Icddc5a7373688c54e42072a2c70974728be3a7d4
Diffstat (limited to 'components/datalake-handler')
5 files changed, 13 insertions, 12 deletions
diff --git a/components/datalake-handler/des/pom.xml b/components/datalake-handler/des/pom.xml index 4beba3ce..87ae9443 100644 --- a/components/datalake-handler/des/pom.xml +++ b/components/datalake-handler/des/pom.xml @@ -227,6 +227,15 @@ <build> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.8</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> @@ -313,14 +322,6 @@ </dependency> </dependencies> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-deploy-plugin</artifactId> - <version>2.8</version> - <configuration> - <skip>true</skip> - </configuration> - </plugin> </plugins> </build> </project> diff --git a/components/datalake-handler/des/src/assembly/init_db/scripts/db_init/11_create-database b/components/datalake-handler/des/src/assembly/init_db/scripts/db_init/11_create-database index f69f1ab1..d0d4bd57 100644 --- a/components/datalake-handler/des/src/assembly/init_db/scripts/db_init/11_create-database +++ b/components/datalake-handler/des/src/assembly/init_db/scripts/db_init/11_create-database @@ -19,4 +19,4 @@ # ============LICENSE_END============================================ # -psql -h $PG_HOST -U $PG_USER -d $PG_DB -f /home/datalake/init_db.sql +psql -h $PG_HOST -U $PG_USER -d $PG_DB -f /datalake/init_db.sql diff --git a/components/datalake-handler/des/src/assembly/init_db/scripts/db_init/20_db-initdb b/components/datalake-handler/des/src/assembly/init_db/scripts/db_init/20_db-initdb index 32986cda..3ed2d698 100644 --- a/components/datalake-handler/des/src/assembly/init_db/scripts/db_init/20_db-initdb +++ b/components/datalake-handler/des/src/assembly/init_db/scripts/db_init/20_db-initdb @@ -19,4 +19,4 @@ # ============LICENSE_END============================================ # -psql -h $PG_HOST -U $PG_USER -d $PG_DB -f /home/datalake/init_db_data.sql +psql -h $PG_HOST -U $PG_USER -d $PG_DB -f /datalake/init_db_data.sql diff --git a/components/datalake-handler/feeder/src/assembly/init_db/scripts/db_init/11_create-database b/components/datalake-handler/feeder/src/assembly/init_db/scripts/db_init/11_create-database index f69f1ab1..d0d4bd57 100644 --- a/components/datalake-handler/feeder/src/assembly/init_db/scripts/db_init/11_create-database +++ b/components/datalake-handler/feeder/src/assembly/init_db/scripts/db_init/11_create-database @@ -19,4 +19,4 @@ # ============LICENSE_END============================================ # -psql -h $PG_HOST -U $PG_USER -d $PG_DB -f /home/datalake/init_db.sql +psql -h $PG_HOST -U $PG_USER -d $PG_DB -f /datalake/init_db.sql diff --git a/components/datalake-handler/feeder/src/assembly/init_db/scripts/db_init/20_db-initdb b/components/datalake-handler/feeder/src/assembly/init_db/scripts/db_init/20_db-initdb index 32986cda..3ed2d698 100644 --- a/components/datalake-handler/feeder/src/assembly/init_db/scripts/db_init/20_db-initdb +++ b/components/datalake-handler/feeder/src/assembly/init_db/scripts/db_init/20_db-initdb @@ -19,4 +19,4 @@ # ============LICENSE_END============================================ # -psql -h $PG_HOST -U $PG_USER -d $PG_DB -f /home/datalake/init_db_data.sql +psql -h $PG_HOST -U $PG_USER -d $PG_DB -f /datalake/init_db_data.sql |