spekframework / spek

A specification framework for Kotlin
Other
2.23k stars 179 forks source link

Add comment in maven example #872

Open yoghurt1131 opened 4 years ago

yoghurt1131 commented 4 years ago

In. Setting up for JVM documentation, I'd like to add a comment in maven example like gradle one. ( I guess kotlin-reflect is often used in compile scope. )

+   <!-- spek requires kotlin-reflect, can be omitted if already in the classpath -->
    <dependency>
        <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-reflect</artifactId>
        <version>${kotlin.version}</version>
        <scope>test</scope>
    </dependency>
</dependencies>
...