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 88 name : Java ${{ matrix.java }}
99 strategy :
1010 matrix :
11- java : [17, 21 ]
11+ java : [17]
1212 env :
1313 REPO_SLUG : ${{ github.repository }}
1414 BRANCH : ${{ github.head_ref }}
Original file line number Diff line number Diff line change 2424 <maven .deploy.skip>true</maven .deploy.skip>
2525 <gpg .skip>true</gpg .skip>
2626 <skipNexusStagingDeployMojo >true</skipNexusStagingDeployMojo >
27+ <allowIncompleteProjects >true</allowIncompleteProjects >
2728 </properties >
2829
2930 <build >
Original file line number Diff line number Diff line change 2424 <maven .deploy.skip>true</maven .deploy.skip>
2525 <gpg .skip>true</gpg .skip>
2626 <skipNexusStagingDeployMojo >true</skipNexusStagingDeployMojo >
27+ <allowIncompleteProjects >true</allowIncompleteProjects >
2728 </properties >
2829
2930 <dependencies >
Original file line number Diff line number Diff line change 2323 <maven .deploy.skip>true</maven .deploy.skip>
2424 <gpg .skip>true</gpg .skip>
2525 <skipNexusStagingDeployMojo >true</skipNexusStagingDeployMojo >
26+ <allowIncompleteProjects >true</allowIncompleteProjects >
2627 </properties >
2728
2829 <dependencies >
Original file line number Diff line number Diff line change 2424 <maven .deploy.skip>true</maven .deploy.skip>
2525 <gpg .skip>true</gpg .skip>
2626 <skipNexusStagingDeployMojo >true</skipNexusStagingDeployMojo >
27+ <allowIncompleteProjects >true</allowIncompleteProjects >
2728 </properties >
2829
2930 <dependencies >
Original file line number Diff line number Diff line change 1313package org .quickperf .sql ;
1414
1515import net .ttddyy .dsproxy .support .ProxyDataSource ;
16- import org .apache .commons .dbcp .BasicDataSource ;
16+ import org .apache .commons .dbcp2 .BasicDataSource ;
1717import org .hibernate .jpa .HibernatePersistenceProvider ;
1818import org .quickperf .sql .config .HibernateConfigBuilder ;
1919import org .quickperf .sql .config .PersistenceUnitInfoBuilder ;
@@ -63,7 +63,7 @@ public DataSource buildFrom(JdbcDatabaseContainer jdbc) {
6363 dataSource .setUrl (jdbc .getJdbcUrl ());
6464 dataSource .setUsername (jdbc .getUsername ());
6565 dataSource .setPassword (jdbc .getPassword ());
66- dataSource .setMaxActive (4 );
66+ dataSource .setMaxTotal (4 );
6767 dataSource .setPoolPreparedStatements (true );
6868 return dataSource ;
6969 }
Original file line number Diff line number Diff line change 2626 <gpg .skip>true</gpg .skip>
2727 <skipNexusStagingDeployMojo >true</skipNexusStagingDeployMojo >
2828 <maven .deploy.skip>true</maven .deploy.skip>
29+ <allowIncompleteProjects >true</allowIncompleteProjects >
2930 </properties >
3031
3132 <dependencies >
You can’t perform that action at this time.
0 commit comments