Skip to content

Commit

Permalink
Shorten test (+3 squashed commits)
Browse files Browse the repository at this point in the history
Squashed commits:
[3b09c167] Javadoc plugin version
[13079b14] Javadoc plugin version
[17a3eb97] Javadoc plugin version
  • Loading branch information
brettwooldridge committed Jul 13, 2021
1 parent 2a92bcf commit 6546dd2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 24 deletions.
2 changes: 1 addition & 1 deletion osx-toolchains.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</provides>
<configuration>
<paths>
<path>/Library/Java/JavaVirtualMachines/jdk1.8.0_191.jdk/Contents/Home/bin</path>
<path>/Library/Java/JavaVirtualMachines/jdk-11.0.11.jdk/Contents/Home/bin</path>
</paths>
</configuration>
</toolchain>
Expand Down
26 changes: 4 additions & 22 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<java11.build.outputDirectory>${project.build.directory}/classes-java11</java11.build.outputDirectory>
<artifact.classifier />

<docker.maven.plugin.fabric8.version>0.33.0</docker.maven.plugin.fabric8.version>
<docker.maven.plugin.fabric8.version>0.36.0</docker.maven.plugin.fabric8.version>
<felix.bundle.plugin.version>5.1.1</felix.bundle.plugin.version>
<felix.version>6.0.1</felix.version>
<hibernate.version>5.4.16.Final</hibernate.version>
Expand All @@ -22,7 +22,7 @@
<mockito.version>3.7.7</mockito.version>
<pax.exam.version>4.13.1</pax.exam.version>
<pax.url.version>2.5.4</pax.url.version>
<postgresql.version>42.1.4</postgresql.version>
<postgresql.version>42.2.20</postgresql.version>
<log4j.version>2.14.0</log4j.version>
<slf4j.version>1.7.30</slf4j.version>
<commons.csv.version>1.5</commons.csv.version>
Expand Down Expand Up @@ -499,8 +499,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>11</source>
<target>11</target>
<compilerArgs>-Xlint</compilerArgs>
</configuration>
</plugin>
Expand Down Expand Up @@ -572,24 +572,6 @@
</build>

<profiles>
<profile>
<id>Java8</id>
<activation>
<jdk>[,11)</jdk>
</activation>
<properties>
<automatic.module.name>com.zaxxer.hikari</automatic.module.name>
<slf4j.version>1.7.30</slf4j.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>Java11</id>
<activation>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/zaxxer/hikari/pool/PostgresTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ static private void exerciseDataSource(HikariDataSource ds, int numThreads) {
do {
quietlySleep(SECONDS.toMillis(1));
assertZeroErrors(threads);
} while (elapsedMillis(start) < SECONDS.toMillis(30));
} while (elapsedMillis(start) < SECONDS.toMillis(15));
stopThreads(threads);
}

Expand Down

0 comments on commit 6546dd2

Please sign in to comment.