kotlintest
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.kotlintest</groupId> <artifactId>kotlintest</artifactId> <version>2.0.7</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</artifactId> <version>2.0.7</version> <name>KotlinTest</name> <description>Kotlin Test Framework</description> <url>http://www.github.com/kotlintest/kotlintest</url> <licenses> <license> <name>The MIT License</name> <url>https://opensource.org/licenses/MIT</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>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.1.51</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>1.1.51</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.7.11</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.11</version> <scope>compile</scope> </dependency> </dependencies> </project>