This message was deleted.
# community-support
s
This message was deleted.
s
Here is wiremock build.gradle
Copy code
plugins {
    id 'java'
}

repositories {
    mavenLocal()
    maven {
        credentials {
            username nexusUsername
            password nexusPassword
        }
        url = '<https://nexus>.***.com/content/groups/private'
    }
}

dependencies {
    testImplementation("com.github.tomakehurst:wiremock-jre8:_")
    testImplementation("org.testng:testng:_")
}
And here is build.gradle from another project added the same way, that works.
Copy code
plugins {
    id 'java'
}

repositories {
    mavenLocal()
    maven {
        credentials {
            username nexusUsername
            password nexusPassword
        }
        url = '<https://nexus>.***.com/content/groups/private'
    }
}

dependencies {
    implementation("com.sun.mail:javax.mail:_")
    implementation("org.jsoup:jsoup:_")
    testImplementation("junit:junit:_")
}
t
Did you only configured the
project().projectDir
and forgot the
include()
?
🙌 1
s
Oh man, this is probably it
🤦 I was starring at it the whole day and answer was in front of my eyes the whole time! Thank you @Thomas Broyer This is it!
m
pro-tip: add a new line between the
include
and
project
lines 😉
✅ 1