kotlintest-tests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.kotlintest</groupId> <artifactId>kotlintest-tests</artifactId> <version>3.0.0-RC2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.kotlintest</groupId> <artifactId>kotlintest-tests</artifactId> <version>3.0.0-RC2</version> <name>KotlinTest</name> <description>Kotlin Test Framework</description> <url>http://www.github.com/kotlintest/kotlintest</url> <licenses> <license> <name>The Apache 2.0 License</name> <url>https://opensource.org/licenses/Apache-2.0</url> </license> </licenses> <developers> <developer> <id>sksamuel</id> <name>Stephen Samuel</name> <email>sam@sksamuel.com</email> </developer> </developers> <scm> <connection>scm:git:http://www.github.com/kotlintest/kotlintest/</connection> <developerConnection>scm:git:http://github.com/sksamuel/</developerConnection> <url>http://www.github.com/kotlintest/kotlintest/</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.2.30</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>1.2.30</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.kotlintest</groupId> <artifactId>kotlintest-core</artifactId> <version>3.0.0-RC2</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.kotlintest</groupId> <artifactId>kotlintest-assertions</artifactId> <version>3.0.0-RC2</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.kotlintest</groupId> <artifactId>kotlintest-runner-junit5</artifactId> <version>3.0.0-RC2</version> <scope>test</scope> </dependency> </dependencies> </project>