diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8d8fcf4
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/target
+.settings
diff --git a/pom.xml b/pom.xml
index b931c0c..bace4ca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,7 +21,7 @@
schemaspy
jar
SchemaSpy
- 5.0.0
+ 5.0.1
http://schemaspy.sourceforge.net
SchemaSpy generates HTML and PNG-based entity relationship diagrams from JDBC-enabled databases.
2004
@@ -57,10 +57,10 @@
maven-compiler-plugin
- 2.3.2
+ 2.5
-
- 1.5
+
+ 1.7
true
source,lines
@@ -68,7 +68,7 @@
org.apache.maven.plugins
maven-jar-plugin
- 2.3.1
+ 2.5
@@ -88,30 +88,30 @@
API for ${project.name} ${project.version}
-
- org.codehaus.mojo
- buildnumber-maven-plugin
- 1.0-beta-3
-
-
- validate
-
- create
-
-
-
-
- false
- false
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
junit
junit
- 3.8.1
+ 4.12
test
diff --git a/src/main/java/net/sourceforge/schemaspy/SchemaAnalyzer.java b/src/main/java/net/sourceforge/schemaspy/SchemaAnalyzer.java
index bcac413..2161ba3 100644
--- a/src/main/java/net/sourceforge/schemaspy/SchemaAnalyzer.java
+++ b/src/main/java/net/sourceforge/schemaspy/SchemaAnalyzer.java
@@ -637,7 +637,7 @@ protected ClassLoader getDriverClassLoader(List classpath) {
// if a classpath has been specified then use it to find the driver,
// otherwise use whatever was used to load this class.
- // thanks to Bruno Leonardo Gonçalves for this implementation that he
+ // thanks to Bruno Leonardo Gonçalves for this implementation that he
// used to resolve issues when running under Maven
if (classpath.size() > 0) {
loader = new URLClassLoader(classpath.toArray(new URL[classpath.size()]));