Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add module unit-tests-guava-testlib. #1611

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ Arrays, Maps or Strings. The iteration protocol was inspired by the Smalltalk co
<module>unit-tests</module>
<module>serialization-tests</module>
<module>jcstress-tests</module>
<module>unit-tests-guava-testlib</module>
<module>unit-tests-java8</module>
<module>test-coverage</module>
</modules>
Expand All @@ -118,7 +119,7 @@ Arrays, Maps or Strings. The iteration protocol was inspired by the Smalltalk co
<slf4j.version>2.0.7</slf4j.version>
<clover.version>4.4.1</clover.version>
<scala.version>2.12.19</scala.version>
<guava.version>33.1.0-jre</guava.version>
<guava.version>33.2.1-jre</guava.version>
<trove4j.version>3.1.0</trove4j.version>
<koloboke.version>1.0.0</koloboke.version>
<hppc.version>0.9.1</hppc.version>
Expand Down
39 changes: 39 additions & 0 deletions unit-tests-guava-testlib/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.collections</groupId>
<artifactId>eclipse-collections-parent</artifactId>
<version>12.0.0-SNAPSHOT</version>
</parent>

<artifactId>unit-tests-guava-testlib</artifactId>

<name>Eclipse Collections Guava Testlib Unit Test Suite</name>

<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava-testlib</artifactId>
<version>${guava.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.eclipse.collections</groupId>
<artifactId>eclipse-collections-api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.eclipse.collections</groupId>
<artifactId>eclipse-collections</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>
Loading
Loading