assertj-arrow-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>in.rcard</groupId> <artifactId>assertj-arrow-core</artifactId> <version>1.2.1</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> <groupId>in.rcard</groupId> <artifactId>assertj-arrow-core</artifactId> <version>1.2.1</version> <name>AssertJ fluent assertions for Kotlin Arrow Core library</name> <description>Rich and fluent assertions for testing Kotlin Arrow Core types</description> <inceptionYear>2023</inceptionYear> <scm> <connection>scm:git:git://github.com/rcardin/assertj-arrow-core.git</connection> <developerConnection>scm:git:ssh://github.com:rcardin/assertj-arrow-core.git</developerConnection> <url>http://github.com/rcardin/assertj-arrow-core/tree/master</url> </scm> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <properties> <java.version>17</java.version> <assertj-core.version>3.26.3</assertj-core.version> <kotlin-stdlib.version>2.0.21</kotlin-stdlib.version> <arrow-core.version>1.2.4</arrow-core.version> <junit-jupiter.version>5.11.3</junit-jupiter.version> <dokka-maven-plugin.version>1.9.0</dokka-maven-plugin.version> <maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version> <kotlinx-coroutines-test.version>1.9.0</kotlinx-coroutines-test.version> </properties> <url>https://github.com/rcardin/assertj-arrow-core</url> <developers> <developer> <name>Riccardo Cardin</name> <url>https://github.com/rcardin</url> <id>rcardin</id> </developer> </developers> <issueManagement> <system>github</system> <url>https://github.com/rcardin/assertj-arrow-core/issues</url> </issueManagement> <dependencies> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj-core.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${kotlin-stdlib.version}</version> </dependency> <dependency> <groupId>io.arrow-kt</groupId> <artifactId>arrow-core</artifactId> <version>${arrow-core.version}</version> <type>pom</type> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test</artifactId> <version>${kotlin-stdlib.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-test</artifactId> <version>${kotlinx-coroutines-test.version}</version> <type>pom</type> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin-stdlib.version}</version> <executions> <execution> <id>compile</id> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>test-compile</id> <goals> <goal>test-compile</goal> </goals> </execution> </executions> <configuration> <args> <arg>-Xcontext-receivers</arg> </args> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>17</source> <target>17</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <properties> <altDeploymentRepository>local::file:./target/staging-deploy</altDeploymentRepository> </properties> <build> <plugins> <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-maven-plugin</artifactId> <version>${dokka-maven-plugin.version}</version> <executions> <execution> <phase>install</phase> <goals> <goal>javadocJar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-source</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jreleaser</groupId> <artifactId>jreleaser-maven-plugin</artifactId> <version>1.5.1</version> <configuration> <jreleaser> <signing> <active>ALWAYS</active> <armored>true</armored> </signing> <deploy> <maven> <nexus2> <maven-central> <active>ALWAYS</active> <url>https://s01.oss.sonatype.org/service/local</url> <snapshotUrl>https://s01.oss.sonatype.org/content/repositories/snapshots/</snapshotUrl> <closeRepository>false</closeRepository> <releaseRepository>false</releaseRepository> <stagingRepositories>target/staging-deploy</stagingRepositories> </maven-central> </nexus2> </maven> </deploy> </jreleaser> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>