https://github.com/daggerok/kotlin-spek-maven-example
Spek 1.x / 2.x example in maven kotlin project
https://github.com/daggerok/kotlin-spek-maven-example
kotlin-spek kotlin-spek2 spek spek2 spekframework
Last synced: 9 months ago
JSON representation
Spek 1.x / 2.x example in maven kotlin project
- Host: GitHub
- URL: https://github.com/daggerok/kotlin-spek-maven-example
- Owner: daggerok
- License: mit
- Created: 2019-05-24T22:24:42.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-06-20T22:42:17.000Z (about 4 years ago)
- Last Synced: 2025-01-10T00:44:29.070Z (over 1 year ago)
- Topics: kotlin-spek, kotlin-spek2, spek, spek2, spekframework
- Language: Kotlin
- Homepage:
- Size: 59.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spek 2.x example in maven kotlin project [](https://travis-ci.org/daggerok/kotlin-spek-maven-example)
```bash
mvn clean ; mvn test -U ; mvn versions:display-property-updates
```
Read [1.x -> 2.x migration guide](https://spekframework.org/migration/) for details
NOTE:
for some reasons we have to use deprecated API from
`org.junit.platform:junit-platform-surefire-provider:1.3.2`
dependency:
```
+-------------------------------------------------------------------------------+
| WARNING: |
| The junit-platform-surefire-provider has been deprecated and is scheduled to |
| be removed in JUnit Platform 1.4. Please use the built-in support in Maven |
| Surefire >= 2.22.0 instead. |
| » https://junit.org/junit5/docs/current/user-guide/#running-tests-build-maven |
+-------------------------------------------------------------------------------+
```
But seems like it's okay...
_see branches:_
* [1.x](https://github.com/daggerok/kotlin-spek-maven-example/tree/1.x)
* [2.x](https://github.com/daggerok/kotlin-spek-maven-example/tree/2.x)