diff options
author | 2025-01-30 19:28:37 +0530 | |
---|---|---|
committer | 2025-01-30 19:28:37 +0530 | |
commit | d41e1b68b6be32ee367bdadd37955e91fba21303 (patch) | |
tree | 3faf15cbbc209a6f381c328c5baeaf684122d66b /integration-tests/pom.xml | |
parent | 92c86bb2b390a9d74f84d53b3edeccd239f3f0f5 (diff) |
Chef removal changes for asdc_tool
- Removal of Chef recipes in the module.
- Introduction of shell scripts in the module to replace some recipes.
- Generation of module configuration using Charts.
Issue-ID: SDC-4699
Change-Id: I3bb3b275f01cb35fb25ada0df3f9c65b86bac106
Signed-off-by: Jinendra.Lodha <jinendra.lodha@accenture.com>
Diffstat (limited to 'integration-tests/pom.xml')
-rw-r--r-- | integration-tests/pom.xml | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index c5130ce16f..0e16b3b705 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -425,6 +425,21 @@ limitations under the License. <version>${functionaljava.version}</version> <scope>test</scope> </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + <version>${spring.version}</version> + <exclusions> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-expression</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + </exclusion> + </exclusions> + </dependency> </dependencies> <build> @@ -837,12 +852,6 @@ limitations under the License. <HEAP_NEWSIZE>512M</HEAP_NEWSIZE> </env> <hostname>sdc-cs</hostname> - <volumes> - <bind> - <volume>${it.chef.config}:/root/chef-solo/environments - </volume> - </bind> - </volumes> <ulimits> <ulimit> <name>memlock</name> @@ -890,13 +899,6 @@ limitations under the License. <ENVNAME>${it.env.name}</ENVNAME> </env> <hostname>sdc-cs-init</hostname> - <volumes> - <bind> - <volume>${it.chef.config}:/home/sdc/chef-solo/environments - </volume> - - </bind> - </volumes> <wait> <time>400000</time> <log>SdcSchemaFileImport successfully completed</log> |