generated from wiremock/wiremock-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
17 lines (16 loc) · 1.28 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
plugins {
id 'org.wiremock.tools.gradle.wiremock-extension-convention' version '0.2.0'
}
// override Wiremock hard-coded profile
// https://github.com/wiremock/gradle-wiremock-extension-plugins/issues/14
checkReleasePreconditions.enabled = false // simple manual workflow
group "${groupId}"
project.publishing.repositories[0].url = "https://maven.pkg.github.com/${githubUser}/${githubRepo}"
project.publishing.publications.mavenJava.pom.url = "https://github.com/${githubUser}/${githubRepo}"
project.publishing.publications.mavenJava.pom.scm.connection = "https://github.com/${githubUser}/${githubRepo}.git"
project.publishing.publications.mavenJava.pom.scm.developerConnection = "https://github.com/${githubUser}/${githubRepo}.git"
project.publishing.publications.mavenJava.pom.scm.url = "https://github.com/${githubUser}/${githubRepo}.git"
project.publishing.publications.standaloneJar.pom.url = "https://github.com/${githubUser}/${githubRepo}"
project.publishing.publications.standaloneJar.pom.scm.connection = "https://github.com/${githubUser}/${githubRepo}.git"
project.publishing.publications.standaloneJar.pom.scm.developerConnection = "https://github.com/${githubUser}/${githubRepo}.git"
project.publishing.publications.standaloneJar.pom.scm.url = "https://github.com/${githubUser}/${githubRepo}.git"