Skip to content

Commit df0b572

Browse files
committed
0.8-RC5
1 parent acf55c4 commit df0b572

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

fj-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.fugerit.java</groupId>
99
<artifactId>fj-lib</artifactId>
10-
<version>0.8-RC4</version>
10+
<version>8.0-RC5</version>
1111
</parent>
1212

1313
<name>fj-core</name>

fj-core/src/main/java/org/fugerit/java/core/db/connect/ConnectionFactoryImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ public static ConnectionFactory newInstance( Properties props, String propsPrefi
240240
int sc = Integer.parseInt( props.getProperty( getParamName( prefix, PROP_CF_EXT_POOLED_SC ), "3" ) );
241241
int ic = Integer.parseInt( props.getProperty( getParamName( prefix, PROP_CF_EXT_POOLED_IC ), "10" ) );
242242
int mc = Integer.parseInt( props.getProperty( getParamName( prefix, PROP_CF_EXT_POOLED_MC ), "30" ) );
243-
cf = new Dbcp2ConnectionFactory( props.getProperty( getParamName( prefix, PROP_CF_MODE_DC_DRV ) ),
243+
cf = new DbcpConnectionFactory( props.getProperty( getParamName( prefix, PROP_CF_MODE_DC_DRV ) ),
244244
props.getProperty( getParamName( prefix, PROP_CF_MODE_DC_URL ) ),
245245
props.getProperty( getParamName( prefix, PROP_CF_MODE_DC_USR ) ),
246246
props.getProperty( getParamName( prefix, PROP_CF_MODE_DC_PWD ) ), sc, ic, mc, cl );

fj-core/src/main/java/org/fugerit/java/core/db/connect/Dbcp2ConnectionFactory.java renamed to fj-core/src/main/java/org/fugerit/java/core/db/connect/DbcpConnectionFactory.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Fugerit
3333
*
3434
*/
35-
public class Dbcp2ConnectionFactory extends ConnectionFactoryImpl {
35+
public class DbcpConnectionFactory extends ConnectionFactoryImpl {
3636

3737
private BasicDataSource dataSource;
3838

@@ -48,7 +48,7 @@ public class Dbcp2ConnectionFactory extends ConnectionFactoryImpl {
4848
* @param max maximum connection
4949
* @throws DAOException in case of issues
5050
*/
51-
public Dbcp2ConnectionFactory( String drv, String url, String usr, String pwd, int init, int min, int max ) throws DAOException {
51+
public DbcpConnectionFactory( String drv, String url, String usr, String pwd, int init, int min, int max ) throws DAOException {
5252
this(drv, url, usr, pwd, init, min, max, null);
5353
}
5454

@@ -65,7 +65,7 @@ public Dbcp2ConnectionFactory( String drv, String url, String usr, String pwd, i
6565
* @param cl the class loader
6666
* @throws DAOException in case of issues
6767
*/
68-
public Dbcp2ConnectionFactory( String drv, String url, String usr, String pwd, int init, int min, int max, ClassLoader cl ) throws DAOException {
68+
public DbcpConnectionFactory( String drv, String url, String usr, String pwd, int init, int min, int max, ClassLoader cl ) throws DAOException {
6969
try {
7070
this.dataSource = new BasicDataSource();
7171
this.dataSource.setDriverClassName( drv );

fj-tool/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.fugerit.java</groupId>
99
<artifactId>fj-lib</artifactId>
10-
<version>0.8-RC4</version>
10+
<version>8.0-RC5</version>
1111
</parent>
1212

1313
<name>fj-tool</name>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<relativePath></relativePath>
1212
</parent>
1313

14-
<version>0.8-RC4</version>
14+
<version>8.0-RC5</version>
1515
<packaging>pom</packaging>
1616

1717
<name>fj-lib</name>

0 commit comments

Comments
 (0)