Skip to content

Commit 76efa61

Browse files

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

basic/kafka/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,12 @@
8989
<groupId>org.springframework.integration</groupId>
9090
<artifactId>spring-integration-kafka</artifactId>
9191
<version>1.2.2.BUILD-SNAPSHOT</version>
92+
<exclusions>
93+
<exclusion>
94+
<groupId>org.slf4j</groupId>
95+
<artifactId>slf4j-log4j12</artifactId>
96+
</exclusion>
97+
</exclusions>
9298
<scope>compile</scope>
9399
</dependency>
94100
<dependency>
@@ -110,9 +116,23 @@
110116
<name>Spring Framework Maven Milestone Repository</name>
111117
<url>https://repo.spring.io/libs-milestone</url>
112118
</repository>
119+
<repository>
120+
<id>repo.spring.io.snapshot</id>
121+
<name>Spring Framework Maven Snapshot Repository</name>
122+
<url>https://repo.spring.io/libs-snapshot</url>
123+
</repository>
113124
</repositories>
114125
<build>
115126
<plugins>
127+
<plugin>
128+
<groupId>org.apache.maven.plugins</groupId>
129+
<artifactId>maven-compiler-plugin</artifactId>
130+
<version>2.3.2</version>
131+
<configuration>
132+
<source>1.8</source>
133+
<target>1.8</target>
134+
</configuration>
135+
</plugin>
116136
<plugin>
117137
<groupId>org.springframework.boot</groupId>
118138
<artifactId>spring-boot-maven-plugin</artifactId>
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.springframework.integration.samples.barrier;
1+
package org.springframework.integration.samples.kafka;
22
/*
33
* Copyright 2015 the original author or authors.
44
*
@@ -20,7 +20,6 @@
2020
import org.junit.runner.RunWith;
2121

2222
import org.springframework.boot.test.SpringApplicationConfiguration;
23-
import org.springframework.integration.samples.kafka.Application;
2423
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
2524

2625
/**
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.integration.samples.barrier;
17+
package org.springframework.integration.samples.kafka;
1818

1919
import org.I0Itec.zkclient.ZkClient;
2020
import org.apache.commons.logging.Log;

0 commit comments

Comments
 (0)