Hi does anyone know if this example works for kotl...
# gradle
j
Hi does anyone know if this example works for kotlin projects or just java projects: https://docs.gradle.org/current/samples/sample_jvm_multi_project_with_additional_test_types.html Thanks!
t
should work with Kotlin projects as well
j
it semi worked. it doesn't appear to add dependencies, neither the ```testIntegrationImplemenation`(dep)` nor ``testIntegrationImplementation`(project)` so I'll have to figure it out. Thanks for confirming it should work though!
t
you should use
"
for configuration name:
Copy code
dependencies {
    "testIntegrationImplementation"(dep)
}
j
sorry I was, bad formatting