Issue: Missing gradle-wrapper.jar in protein-translation exercise

The file exercises/practice/protein-translation/gradle/wrapper/gradle-wrapper.jar is missing, causing the following error when trying to run tests via gradlew test:

Error: Could not find or load main class org.gradle.wrapper.GradleWrapperMain
Caused by: java.lang.ClassNotFoundException: org.gradle.wrapper.GradleWrapperMain

I’ve confirmed this is the only exercise for which this file is missing, and opened this PR to address it: fix: add missing gradle-wrapper.jar for protein translation exercise (#694) by armkeh · Pull Request #695 · exercism/kotlin · GitHub

2 Likes

Thanks for reporting

@SleeplessByte You’re the only current kotlin maintainer.

1 Like

Ty for the ping

Merged! Let me know if this fixes the issue

Confirmed, after exercism upgrade and exercism download --track=kotlin --exercise=protein-translation --force, the missing jar file is now present.

1 Like