Skip to content

Commit 4846b99

Browse files
artembilangregturn
authored andcommitted
Add spring-integration-file dependency (#15)
Fixes #14 According to the spring-projects/spring-boot@c068285 there is no `spring-integration-file` jar in the classpath since Spring Boot 1.4. To make application working explicitly add `spring-integration-file` dependency
1 parent 444b59f commit 4846b99

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

complete/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ targetCompatibility = 1.8
2727
dependencies {
2828
compile("org.springframework.boot:spring-boot-starter-integration")
2929
compile("org.springframework.integration:spring-integration-feed")
30+
compile("org.springframework.integration:spring-integration-file")
3031
testCompile("junit:junit")
3132
}
3233

complete/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727
<groupId>org.springframework.integration</groupId>
2828
<artifactId>spring-integration-feed</artifactId>
2929
</dependency>
30+
<dependency>
31+
<groupId>org.springframework.integration</groupId>
32+
<artifactId>spring-integration-file</artifactId>
33+
</dependency>
3034
</dependencies>
3135

3236

initial/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ targetCompatibility = 1.8
2727
dependencies {
2828
compile("org.springframework.boot:spring-boot-starter-integration")
2929
compile("org.springframework.integration:spring-integration-feed")
30+
compile("org.springframework.integration:spring-integration-file")
3031
testCompile("junit:junit")
3132
}
3233

initial/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727
<groupId>org.springframework.integration</groupId>
2828
<artifactId>spring-integration-feed</artifactId>
2929
</dependency>
30+
<dependency>
31+
<groupId>org.springframework.integration</groupId>
32+
<artifactId>spring-integration-file</artifactId>
33+
</dependency>
3034
</dependencies>
3135

3236

0 commit comments

Comments
 (0)