Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
7e3614e6
Commit
7e3614e6
authored
May 02, 2014
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix samples that need jdbc and don't import it
parent
06e364a9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
pom.xml
spring-boot-samples/spring-boot-sample-flyway/pom.xml
+1
-1
SampleFlywayApplicationTests.java
...test/java/sample/flyway/SampleFlywayApplicationTests.java
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-liquibase/pom.xml
+1
-1
No files found.
spring-boot-samples/spring-boot-sample-flyway/pom.xml
View file @
7e3614e6
...
...
@@ -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>
...
...
spring-boot-samples/spring-boot-sample-flyway/src/test/java/sample/flyway/Sample
Liquibase
ApplicationTests.java
→
spring-boot-samples/spring-boot-sample-flyway/src/test/java/sample/flyway/Sample
Flyway
ApplicationTests.java
View file @
7e3614e6
...
...
@@ -27,7 +27,7 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@RunWith
(
SpringJUnit4ClassRunner
.
class
)
@SpringApplicationConfiguration
(
classes
=
SampleFlywayApplication
.
class
)
public
class
Sample
Liquibase
ApplicationTests
{
public
class
Sample
Flyway
ApplicationTests
{
@Autowired
private
JdbcTemplate
template
;
...
...
spring-boot-samples/spring-boot-sample-liquibase/pom.xml
View file @
7e3614e6
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment