diff --git a/plugin/build.gradle b/plugin/build.gradle index 55a6901..0fc032f 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -52,17 +52,21 @@ gradlePlugin { publishing { publications { - pluginMaven(MavenPublication) { + withType(MavenPublication) { pom { licenses { license { - name = 'Apache License 2.0' - url = 'https://www.apache.org/licenses/LICENSE-2.0.txt' + name = 'The Apache Software License, Version 2.0' + url = 'http://www.apache.org/licenses/LICENSE-2.0.txt' distribution = 'repo' } } + scm { + connection = 'scm:git:git://github.com/jraska/modules-graph-assert.git' + developerConnection = 'scm:git:ssh://git@github.com/jraska/modules-graph-assert.git' + url = 'https://github.com/jraska/modules-graph-assert' + } } } } } -