Browse Source

Fix samples that need jdbc and don't import it

pull/768/merge
Dave Syer 12 years ago
parent
commit
7e3614e6e0
  1. 2
      spring-boot-samples/spring-boot-sample-flyway/pom.xml
  2. 2
      spring-boot-samples/spring-boot-sample-flyway/src/test/java/sample/flyway/SampleFlywayApplicationTests.java
  3. 2
      spring-boot-samples/spring-boot-sample-liquibase/pom.xml

2
spring-boot-samples/spring-boot-sample-flyway/pom.xml

@ -21,7 +21,7 @@ @@ -21,7 +21,7 @@
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.googlecode.flyway</groupId>

2
spring-boot-samples/spring-boot-sample-flyway/src/test/java/sample/flyway/SampleLiquibaseApplicationTests.java → spring-boot-samples/spring-boot-sample-flyway/src/test/java/sample/flyway/SampleFlywayApplicationTests.java

@ -27,7 +27,7 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @@ -27,7 +27,7 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes=SampleFlywayApplication.class)
public class SampleLiquibaseApplicationTests {
public class SampleFlywayApplicationTests {
@Autowired
private JdbcTemplate template;

2
spring-boot-samples/spring-boot-sample-liquibase/pom.xml

@ -21,7 +21,7 @@ @@ -21,7 +21,7 @@
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>

Loading…
Cancel
Save