File tree Expand file tree Collapse file tree 7 files changed +8
-3
lines changed
spring/junit4-spring-base-tests
sql-testcontainers-test/test-containers-test-util/src/test/java/org/quickperf/sql Expand file tree Collapse file tree 7 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 8
8
name : Java ${{ matrix.java }}
9
9
strategy :
10
10
matrix :
11
- java : [17, 21 ]
11
+ java : [17]
12
12
env :
13
13
REPO_SLUG : ${{ github.repository }}
14
14
BRANCH : ${{ github.head_ref }}
Original file line number Diff line number Diff line change 24
24
<maven .deploy.skip>true</maven .deploy.skip>
25
25
<gpg .skip>true</gpg .skip>
26
26
<skipNexusStagingDeployMojo >true</skipNexusStagingDeployMojo >
27
+ <allowIncompleteProjects >true</allowIncompleteProjects >
27
28
</properties >
28
29
29
30
<build >
Original file line number Diff line number Diff line change 24
24
<maven .deploy.skip>true</maven .deploy.skip>
25
25
<gpg .skip>true</gpg .skip>
26
26
<skipNexusStagingDeployMojo >true</skipNexusStagingDeployMojo >
27
+ <allowIncompleteProjects >true</allowIncompleteProjects >
27
28
</properties >
28
29
29
30
<dependencies >
Original file line number Diff line number Diff line change 23
23
<maven .deploy.skip>true</maven .deploy.skip>
24
24
<gpg .skip>true</gpg .skip>
25
25
<skipNexusStagingDeployMojo >true</skipNexusStagingDeployMojo >
26
+ <allowIncompleteProjects >true</allowIncompleteProjects >
26
27
</properties >
27
28
28
29
<dependencies >
Original file line number Diff line number Diff line change 24
24
<maven .deploy.skip>true</maven .deploy.skip>
25
25
<gpg .skip>true</gpg .skip>
26
26
<skipNexusStagingDeployMojo >true</skipNexusStagingDeployMojo >
27
+ <allowIncompleteProjects >true</allowIncompleteProjects >
27
28
</properties >
28
29
29
30
<dependencies >
Original file line number Diff line number Diff line change 13
13
package org .quickperf .sql ;
14
14
15
15
import net .ttddyy .dsproxy .support .ProxyDataSource ;
16
- import org .apache .commons .dbcp .BasicDataSource ;
16
+ import org .apache .commons .dbcp2 .BasicDataSource ;
17
17
import org .hibernate .jpa .HibernatePersistenceProvider ;
18
18
import org .quickperf .sql .config .HibernateConfigBuilder ;
19
19
import org .quickperf .sql .config .PersistenceUnitInfoBuilder ;
@@ -63,7 +63,7 @@ public DataSource buildFrom(JdbcDatabaseContainer jdbc) {
63
63
dataSource .setUrl (jdbc .getJdbcUrl ());
64
64
dataSource .setUsername (jdbc .getUsername ());
65
65
dataSource .setPassword (jdbc .getPassword ());
66
- dataSource .setMaxActive (4 );
66
+ dataSource .setMaxTotal (4 );
67
67
dataSource .setPoolPreparedStatements (true );
68
68
return dataSource ;
69
69
}
Original file line number Diff line number Diff line change 26
26
<gpg .skip>true</gpg .skip>
27
27
<skipNexusStagingDeployMojo >true</skipNexusStagingDeployMojo >
28
28
<maven .deploy.skip>true</maven .deploy.skip>
29
+ <allowIncompleteProjects >true</allowIncompleteProjects >
29
30
</properties >
30
31
31
32
<dependencies >
You can’t perform that action at this time.
0 commit comments