diff options
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 |