Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
williewheeler committed May 1, 2013
1 parent c147eaa commit 3068b61
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 29 deletions.
11 changes: 8 additions & 3 deletions README
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
========================================================================================================================
Spring in Practice, Chapter 1
README - Spring in Practice Recipe 10.6

Copyright (c) 2008-2012 Manning Publications Co.
Copyright (c) 2013 Manning Publications Co.

Joshua White
Willie Wheeler ([email protected])
========================================================================================================================

Book: http://manning.com/wheeler/
Blog: http://springinpractice.com/
Code: https://github.com/springinpractice
========================================================================================================================
64 changes: 41 additions & 23 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,24 +1,42 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.springinpractice</groupId>
<artifactId>sip01</artifactId>
<version>1.0-RELEASE</version>
<packaging>jar</packaging>

<name>Spring in Practice Chapter 1</name>
<url>http://springinpractice.com/</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.4</version>
</dependency>
</dependencies>
<?xml version="1.0" encoding="UTF-8"?>

<!--
========================================================================================================================
pom.xml
Copyright (c) 2013 Manning Publications Co.
Joshua White
Willie Wheeler ([email protected])
Book: http://manning.com/wheeler/
Blog: http://springinpractice.com/
Code: https://github.com/springinpractice
========================================================================================================================
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<groupId>com.springinpractice</groupId>
<artifactId>sip01</artifactId>
<version>1.0-RELEASE</version>
<packaging>jar</packaging>

<name>Spring in Practice Chapter 1</name>
<url>http://springinpractice.com/</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.4</version>
</dependency>
</dependencies>
</project>
9 changes: 7 additions & 2 deletions src/main/java/com/springinpractice/ch01/dao/AccountDao.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
// Source project: sip01, branch: 01 (Maven Project)
/*
* Copyright (c) 2013 Manning Publications Co.
*
* Book: http://manning.com/wheeler/
* Blog: http://springinpractice.com/
* Code: https://github.com/springinpractice
*/
package com.springinpractice.ch01.dao;

public interface AccountDao {

}
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
// Source project: sip01, branch: 01 (Maven Project)
/*
* Copyright (c) 2013 Manning Publications Co.
*
* Book: http://manning.com/wheeler/
* Blog: http://springinpractice.com/
* Code: https://github.com/springinpractice
*/
package com.springinpractice.ch01.dao.jdbc;

import org.apache.commons.dbcp.BasicDataSource;
Expand Down
Empty file added src/main/resources/.gitignore
Empty file.
Empty file added src/test/java/.gitignore
Empty file.
Empty file added src/test/resources/.gitignore
Empty file.

0 comments on commit 3068b61

Please sign in to comment.