1. `./gradlew scaffold --coordinates com.example:my-library:1.0.0` 2. Remove `testImplementation "com.example:my-library:$libraryVersion"` from `build.gradle` 3. Edit `metadata/com.example/my-library/1.0.0/index.json` to look like this: ```json ["jni-config.json","proxy-config.json","reflect-config.json","resource-config.json","serialization-config.json"] ``` 4. Run `./gradlew check` Expected: It should fail because the JSON is not formatted Actual: Passes