-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Default the output to use only ASCII by default * Add support for all functional interfaces in Java. * Cleanup formatting configuration and output formatting * Update test/build dependencies --------- Co-authored-by: Morten Haraldsen <[email protected]>
- Loading branch information
Showing
12 changed files
with
1,189 additions
and
254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
<artifactId>chronograph</artifactId> | ||
<name>Chronograph</name> | ||
<description>Easy-to-use stopwatch for task performance statistics</description> | ||
<version>2.0.0</version> | ||
<version>3.0.0</version> | ||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
|
@@ -26,7 +26,7 @@ | |
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.6.1</version> | ||
<version>3.13.0</version> | ||
<configuration> | ||
<source>17</source> | ||
<target>17</target> | ||
|
@@ -36,7 +36,7 @@ | |
<plugin> | ||
<groupId>org.jacoco</groupId> | ||
<artifactId>jacoco-maven-plugin</artifactId> | ||
<version>0.8.11</version> | ||
<version>0.8.12</version> | ||
<executions> | ||
<execution> | ||
<id>prepare-agent</id> | ||
|
@@ -54,7 +54,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.22.2</version> | ||
<version>3.5.0</version> | ||
<configuration> | ||
<excludes> | ||
<exclude>**/*BenchmarkTest.java</exclude> | ||
|
@@ -64,7 +64,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>3.0.1</version> | ||
<version>3.3.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
|
@@ -77,7 +77,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.3.1</version> | ||
<version>3.6.3</version> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
|
@@ -93,12 +93,12 @@ | |
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>versions-maven-plugin</artifactId> | ||
<version>2.8.1</version> | ||
<version>2.16.2</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.13</version> | ||
<version>1.6.14</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>sonatype-nexus-staging</serverId> | ||
|
@@ -109,7 +109,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>1.6</version> | ||
<version>3.2.1</version> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
|
@@ -126,7 +126,7 @@ | |
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>license-maven-plugin</artifactId> | ||
<version>2.0.0</version> | ||
<version>2.2.0</version> | ||
<configuration> | ||
<verbose>false</verbose> | ||
</configuration> | ||
|
@@ -165,7 +165,7 @@ | |
<extension> | ||
<groupId>org.apache.maven.wagon</groupId> | ||
<artifactId>wagon-ssh</artifactId> | ||
<version>2.12</version> | ||
<version>3.5.3</version> | ||
</extension> | ||
</extensions> | ||
</build> | ||
|
@@ -177,7 +177,7 @@ | |
</repository> | ||
</distributionManagement> | ||
<scm> | ||
<url>https://github.com:ethlo/chronograph</url> | ||
<url>https://github.com/ethlo/chronograph</url> | ||
<connection>scm:git:[email protected]:ethlo/chronograph.git</connection> | ||
<developerConnection>scm:git:[email protected]:ethlo/chronograph.git</developerConnection> | ||
</scm> | ||
|
@@ -189,21 +189,25 @@ | |
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<version>5.9.0</version> | ||
<version>5.11.0</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-core</artifactId> | ||
<version>5.14.2</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>1.8.0-beta4</version> | ||
<version>2.0.12</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.assertj</groupId> | ||
<artifactId>assertj-core</artifactId> | ||
<version>3.23.1</version> | ||
<version>3.25.3</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.