-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from cowwoc/release-10.0
Release 10.0
- Loading branch information
Showing
418 changed files
with
38,536 additions
and
37,926 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
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
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
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
2 changes: 1 addition & 1 deletion
2
...irements/annotation/CheckReturnValue.java → ...ements10/annotation/CheckReturnValue.java
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
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
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 |
---|---|---|
@@ -1,19 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.github.cowwoc.requirements</groupId> | ||
<artifactId>benchmark</artifactId> | ||
<version>9.0.1-SNAPSHOT</version> | ||
<version>10.0.0-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>benchmark.assertj</artifactId> | ||
<packaging>jar</packaging> | ||
|
||
<properties> | ||
<rootBaseDir>${project.basedir}/../..</rootBaseDir> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.assertj</groupId> | ||
<artifactId>assertj-core</artifactId> | ||
<version>3.25.3</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
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
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 |
---|---|---|
@@ -1,9 +1,17 @@ | ||
module com.github.cowwoc.requirements.benchmark.assertj | ||
/* | ||
* Copyright 2019 Gili Tzabari. | ||
* Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 | ||
*/ | ||
/** | ||
* Benchmark of equivalent assertj functionality. | ||
*/ | ||
@SuppressWarnings("JavaModuleNaming") | ||
module com.github.cowwoc.requirements10.benchmark.assertj | ||
{ | ||
requires jmh.core; | ||
requires org.testng; | ||
requires org.assertj.core; | ||
|
||
exports com.github.cowwoc.requirements.benchmark.assertj to org.testng; | ||
exports com.github.cowwoc.requirements.benchmark.assertj.jmh_generated to jmh.core; | ||
exports com.github.cowwoc.requirements10.benchmark.assertj to org.testng; | ||
exports com.github.cowwoc.requirements10.benchmark.assertj.jmh_generated to jmh.core; | ||
} |
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
Binary file not shown.
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
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
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 |
---|---|---|
@@ -1,11 +1,19 @@ | ||
module com.github.cowwoc.requirements.benchmark.guava | ||
/* | ||
* Copyright 2019 Gili Tzabari. | ||
* Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 | ||
*/ | ||
/** | ||
* Benchmark of the guava module. | ||
*/ | ||
@SuppressWarnings("JavaModuleNaming") | ||
module com.github.cowwoc.requirements10.benchmark.guava | ||
{ | ||
requires jmh.core; | ||
requires com.google.common; | ||
requires org.testng; | ||
requires com.github.cowwoc.requirements.guava; | ||
requires com.github.cowwoc.requirements10.guava; | ||
requires static com.google.errorprone.annotations; | ||
|
||
exports com.github.cowwoc.requirements.benchmark.guava to org.testng; | ||
exports com.github.cowwoc.requirements.benchmark.guava.jmh_generated to jmh.core; | ||
exports com.github.cowwoc.requirements10.benchmark.guava to org.testng; | ||
exports com.github.cowwoc.requirements10.benchmark.guava.jmh_generated to jmh.core; | ||
} |
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
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.