Skip to content

Commit

Permalink
[maven-release-plugin] rollback the release of HikariCP-4.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
brettwooldridge committed Jul 13, 2021
1 parent a2d71f7 commit a812f48
Showing 1 changed file with 29 additions and 3 deletions.
32 changes: 29 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>4.0.4</version>
<version>4.0.4-SNAPSHOT</version>
<packaging>bundle</packaging>

<name>HikariCP</name>
Expand All @@ -49,7 +49,7 @@
<connection>scm:git:git@github.com:brettwooldridge/HikariCP.git</connection>
<developerConnection>scm:git:git@github.com:brettwooldridge/HikariCP.git</developerConnection>
<url>git@github.com:brettwooldridge/HikariCP.git</url>
<tag>HikariCP-4.0.4</tag>
<tag>HEAD</tag>
</scm>

<licenses>
Expand Down Expand Up @@ -518,12 +518,38 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<version>3.0.0-M5</version>
<configuration>
<!-- Sets the VM argument line used when unit tests are run. -->
<argLine>${surefireArgLine} ${sureFireOptions11}</argLine>
<reuseForks>${sureFireForks11}</reuseForks>
</configuration>
<dependencies>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-core</artifactId>
<version>${micrometer.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${metrics.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-healthchecks</artifactId>
<version>${metrics.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.prometheus</groupId>
<artifactId>simpleclient</artifactId>
<version>${simpleclient.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</plugin>

<plugin>
Expand Down

0 comments on commit a812f48

Please sign in to comment.