Using Spring integration BOM instead of separate artifacts depedencies
Project: http://git-wip-us.apache.org/repos/asf/mina-sshd/repo Commit: http://git-wip-us.apache.org/repos/asf/mina-sshd/commit/8a570b2a Tree: http://git-wip-us.apache.org/repos/asf/mina-sshd/tree/8a570b2a Diff: http://git-wip-us.apache.org/repos/asf/mina-sshd/diff/8a570b2a Branch: refs/heads/master Commit: 8a570b2a599a0b5f6ad63056983bbce3a83e1a88 Parents: 1bddd2a Author: Goldstein Lyor <[email protected]> Authored: Thu Jan 4 12:00:20 2018 +0200 Committer: Goldstein Lyor <[email protected]> Committed: Thu Jan 4 12:00:20 2018 +0200 ---------------------------------------------------------------------- sshd-spring-sftp/pom.xml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/8a570b2a/sshd-spring-sftp/pom.xml ---------------------------------------------------------------------- diff --git a/sshd-spring-sftp/pom.xml b/sshd-spring-sftp/pom.xml index 368307c..e883667 100644 --- a/sshd-spring-sftp/pom.xml +++ b/sshd-spring-sftp/pom.xml @@ -41,8 +41,10 @@ <dependencies> <dependency> <groupId>org.springframework.integration</groupId> - <artifactId>spring-integration-stream</artifactId> + <artifactId>spring-integration-bom</artifactId> <version>${spring.integration.version}</version> + <type>pom</type> + <scope>import</scope> </dependency> </dependencies> </dependencyManagement> @@ -63,19 +65,16 @@ <dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-core</artifactId> - <version>${spring.integration.version}</version> </dependency> <dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-file</artifactId> - <version>${spring.integration.version}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-sftp</artifactId> - <version>${spring.integration.version}</version> <scope>test</scope> </dependency> <dependency>
