Skip to content

Commit

Permalink
Update pom.py
Browse files Browse the repository at this point in the history
Added db-info and removed db-generate-ddl-incr
  • Loading branch information
gpaulissen committed Aug 25, 2021
1 parent 78c7347 commit 93697ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utils/pom.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ def determine_POM_settings(pom_file, db_config_dir):
logger.debug('process_POM()')
properties, profiles = determine_POM_settings(pom_file, db_config_dir)
apex_profiles = ['apex-export', 'apex-import']
db_profiles = ['db-install', 'db-test', 'db-generate-ddl-full', 'db-generate-ddl-incr']
# db_profiles = ['db-install', 'db-test', 'db-generate-ddl-full', 'db-generate-ddl-incr']
db_profiles = ['db-info', 'db-install', 'db-test', 'db-generate-ddl-full']
if profiles.issuperset(set(apex_profiles)):
profiles = apex_profiles
elif profiles.issuperset(set(db_profiles)):
Expand Down

0 comments on commit 93697ed

Please sign in to comment.