Javadoc fixes, use samskivert 1.9 for testing.
This commit is contained in:
@@ -76,7 +76,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.samskivert</groupId>
|
<groupId>com.samskivert</groupId>
|
||||||
<artifactId>samskivert</artifactId>
|
<artifactId>samskivert</artifactId>
|
||||||
<version>1.8.2</version>
|
<version>1.9</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
@@ -130,6 +130,7 @@
|
|||||||
<configuration>
|
<configuration>
|
||||||
<quiet>true</quiet>
|
<quiet>true</quiet>
|
||||||
<show>public</show>
|
<show>public</show>
|
||||||
|
<additionalparam>-Xdoclint:all -Xdoclint:-missing</additionalparam>
|
||||||
<excludePackageNames>com.samskivert.depot.impl</excludePackageNames>
|
<excludePackageNames>com.samskivert.depot.impl</excludePackageNames>
|
||||||
<links>
|
<links>
|
||||||
<link>http://docs.guava-libraries.googlecode.com/git/javadoc/</link>
|
<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
|
* 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).
|
* 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
|
* @param url a URL prefix that can be used to identify the type of database being accessed by
|
||||||
* of database being accessed by the supplied data sources, this should be one of "jdbc:mysql"
|
* the supplied data sources, this should be one of "jdbc:mysql" or "jdbc:postgresql" as those
|
||||||
* or "jdbc:postgresql" as those are the only two types of database currently supported.
|
* are the only two types of database currently supported.
|
||||||
*/
|
*/
|
||||||
public DataSourceConnectionProvider (String url, DataSource readSource, DataSource writeSource)
|
public DataSourceConnectionProvider (String url, DataSource readSource, DataSource writeSource)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user