assertj-vavr
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.assertj</groupId> <artifactId>assertj-vavr</artifactId> <version>0.4.3</version> </dependency>
<?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/maven-v4_0_0.xsd "> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.assertj</groupId> <artifactId>assertj-parent-pom</artifactId> <version>2.2.17</version> </parent> <artifactId>assertj-vavr</artifactId> <version>0.4.3</version> <name>AssertJ fluent assertions for Vavr</name> <description>Rich and fluent assertions for testing Vavr tools</description> <inceptionYear>2017</inceptionYear> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <developerConnection>scm:git:git@github.com:assertj/assertj-vavr.git</developerConnection> <connection>scm:git:git@github.com:assertj/assertj-vavr.git</connection> <url>git@github.com:assertj/assertj-vavr</url> <tag>v0.4.3</tag> </scm> <url>https://github.com/assertj/assertj-vavr</url> <developers> <developer> <name>Grzegorz Piwowarek</name> <email>gpiwowarek@gmail.com</email> <url>http://pivovarit.github.io/</url> <id>gpiwowarek</id> </developer> <developer> <name>Michał Chmielarz</name> <email>michal.chmielarz@gmail.com</email> <url>http://www.devthoughts.pl</url> <id>mchmielarz</id> </developer> <developer> <name>Bartek Kuczyński</name> <url>http://koziolekweb.pl</url> <id>Koziolek</id> </developer> <developer> <name>Alex Dukhno</name> <email>alex.dukhno@icloud.com</email> <url>https://alex-diez.github.io/</url> <id>Alex-Diez</id> </developer> <developer> <name>Sean C. Sullivan</name> <url>https://github.com/sullis</url> <id>sullis</id> </developer> </developers> <issueManagement> <system>github</system> <url>https://github.com/assertj/assertj-vavr/issues</url> </issueManagement> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>5.9.3</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.24.2</version> </dependency> <dependency> <groupId>io.vavr</groupId> <artifactId>vavr</artifactId> <version>0.10.4</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <!-- needed to fix javadoc on java 11+ https://github.com/joel-costigliola/assertj-core/issues/1403 --> <source>8</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <properties> <!-- Values to be substituted in template --> <currentYear>2023</currentYear> </properties> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <id>jacoco-report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> <execution> <id>default-check</id> <phase>prepare-package</phase> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule implementation="org.jacoco.maven.RuleConfiguration"> <element>BUNDLE</element> <limits> <limit implementation="org.jacoco.report.check.Limit"> <counter>CLASS</counter> <value>COVEREDRATIO</value> <minimum>0.98</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>