spek icon indicating copy to clipboard operation
spek copied to clipboard

Add comment in maven example

Open yoghurt1131 opened this issue 5 years ago • 0 comments

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>
...

yoghurt1131 avatar Mar 29 '20 07:03 yoghurt1131