Skip to content

Commit

Permalink
Remove conflicting deps and add missing ones
Browse files Browse the repository at this point in the history
* Adjust code to missing dependencies previously transitively available
  • Loading branch information
fabapp2 committed Sep 28, 2023
1 parent 8d98337 commit a10cc18
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3 deletions.
5 changes: 5 additions & 0 deletions components/recipe-test-support/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@
<type>test-jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.13.0</version>
</dependency>
</dependencies>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import org.springframework.core.io.Resource;
import org.springframework.sbm.engine.commands.ScanCommand;
import org.springframework.sbm.engine.context.ProjectContext;
import org.springframework.sbm.parsers.RewriteExecutionContext;
import org.springframework.sbm.project.parser.ProjectContextInitializer;

import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/
package org.springframework.sbm.test;

import org.apache.commons.io.FileUtils;
import org.springframework.sbm.engine.commands.ApplicableRecipeListCommand;
import org.springframework.sbm.engine.commands.ApplyCommand;
import org.springframework.sbm.engine.commands.ScanCommand;
Expand All @@ -26,7 +27,6 @@
import freemarker.template.Configuration;
import lombok.AccessLevel;
import lombok.Setter;
import org.apache.commons.io.FileUtils;
import org.springframework.core.io.FileSystemResource;
import org.springframework.core.io.Resource;

Expand Down
8 changes: 7 additions & 1 deletion components/sbm-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,13 @@
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.13.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>2.14.1</version>
Expand Down
5 changes: 5 additions & 0 deletions components/sbm-recipes-jee-to-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@
<artifactId>sbm-support-jee</artifactId>
<version>0.15.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.13.0</version>
</dependency>

<!-- Override Jackson coming from spring boot -->
<!-- <dependency>-->
Expand Down

0 comments on commit a10cc18

Please sign in to comment.