Javadoc fixes, use samskivert 1.9 for testing.

This commit is contained in:
Michael Bayne
2015-03-12 08:51:09 -07:00
parent eb6724ed8b
commit 2eacad24e9
2 changed files with 5 additions and 4 deletions
+2 -1
View File
@@ -76,7 +76,7 @@
<dependency>
<groupId>com.samskivert</groupId>
<artifactId>samskivert</artifactId>
<version>1.8.2</version>
<version>1.9</version>
<scope>test</scope>
</dependency>
</dependencies>
@@ -130,6 +130,7 @@
<configuration>
<quiet>true</quiet>
<show>public</show>
<additionalparam>-Xdoclint:all -Xdoclint:-missing</additionalparam>
<excludePackageNames>com.samskivert.depot.impl</excludePackageNames>
<links>
<link>http://docs.guava-libraries.googlecode.com/git/javadoc/</link>
@@ -24,9 +24,9 @@ public class DataSourceConnectionProvider implements ConnectionProvider
* Responsibility for the lifecycle of the supplied datasources is left to the caller and is
* not managed by the connection provider ({@link #shutdown} does nothing).
*
* @param url a URL prefix that can be used by the {@link DatabaseLiaison} to identify the type
* of database being accessed by the supplied data sources, this should be one of "jdbc:mysql"
* or "jdbc:postgresql" as those are the only two types of database currently supported.
* @param url a URL prefix that can be used to identify the type of database being accessed by
* the supplied data sources, this should be one of "jdbc:mysql" or "jdbc:postgresql" as those
* are the only two types of database currently supported.
*/
public DataSourceConnectionProvider (String url, DataSource readSource, DataSource writeSource)
{