Skip to content
This repository has been archived by the owner on Sep 12, 2022. It is now read-only.

Commit

Permalink
updated compiler version and fixed utf-8 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Philipona committed Dec 11, 2014
1 parent 122d74d commit 3315397
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 24 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
.settings
46 changes: 23 additions & 23 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<artifactId>schemaspy</artifactId>
<packaging>jar</packaging>
<name>SchemaSpy</name>
<version>5.0.0</version>
<version>5.0.1</version>
<url>http://schemaspy.sourceforge.net</url>
<description>SchemaSpy generates HTML and PNG-based entity relationship diagrams from JDBC-enabled databases.</description>
<inceptionYear>2004</inceptionYear>
Expand Down Expand Up @@ -57,18 +57,18 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<version>2.5</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<source>1.7</source>
<target>1.7</target>
<debug>true</debug>
<debuglevel>source,lines</debuglevel>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<version>2.5</version>
<configuration>
<archive>
<manifest>
Expand All @@ -88,30 +88,30 @@
<windowtitle>API for ${project.name} ${project.version}</windowtitle>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.0-beta-3</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<doCheck>false</doCheck>
<doUpdate>false</doUpdate>
</configuration>
</plugin>
<!-- <plugin> -->
<!-- <groupId>org.codehaus.mojo</groupId> -->
<!-- <artifactId>buildnumber-maven-plugin</artifactId> -->
<!-- <version>1.0-beta-3</version> -->
<!-- <executions> -->
<!-- <execution> -->
<!-- <phase>validate</phase> -->
<!-- <goals> -->
<!-- <goal>create</goal> -->
<!-- </goals> -->
<!-- </execution> -->
<!-- </executions> -->
<!-- <configuration> -->
<!-- <doCheck>false</doCheck> -->
<!-- <doUpdate>false</doUpdate> -->
<!-- </configuration> -->
<!-- </plugin> -->
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ protected ClassLoader getDriverClassLoader(List<URL> 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()]));
Expand Down

0 comments on commit 3315397

Please sign in to comment.