Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix project URLs in maven poms #478

Merged
merged 1 commit into from Oct 25, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -6,6 +6,7 @@ You might be looking for:
- [plugin-maven/CHANGES.md](plugin-maven/CHANGES.md)

### Version 1.26.0-SNAPSHOT - TBD (javadoc [lib](https://diffplug.github.io/spotless/javadoc/spotless-lib/snapshot/) [lib-extra](https://diffplug.github.io/spotless/javadoc/spotless-lib-extra/snapshot/), [snapshot repo](https://oss.sonatype.org/content/repositories/snapshots/com/diffplug/spotless/))
* Fix project URLs in poms. ([#478](https://github.com/diffplug/spotless/pull/478))

### Version 1.25.0 - October 6th 2019 (javadoc [lib](https://diffplug.github.io/spotless/javadoc/spotless-lib/1.25.0/) [lib-extra](https://diffplug.github.io/spotless/javadoc/spotless-lib-extra/1.25.0/), artifact [lib]([jcenter](https://bintray.com/diffplug/opensource/spotless-lib), [lib-extra]([jcenter](https://bintray.com/diffplug/opensource/spotless-lib-extra)))

Expand Down
8 changes: 4 additions & 4 deletions _ext/gradle/java-publish.gradle
Expand Up @@ -50,11 +50,11 @@ publishing {
resolveStrategy = Closure.DELEGATE_FIRST
name project.ext_artifactId
description project.ext_description
url "https://github.com/${project.ext_org}/${project.name}"
url "https://github.com/${project.ext_org}/${rootProject.name}"
scm {
url "https://github.com/${project.ext_org}/${project.name}"
connection "scm:git:git://github.com/${project.ext_org}/${project.name}"
developerConnection "scm:git:ssh:git@github.com/${project.ext_org}/${project.name}"
url "https://github.com/${project.ext_org}/${rootProject.name}"
connection "scm:git:https://github.com/${project.ext_org}/${rootProject.name}.git"
developerConnection "scm:git:ssh:git@github.com/${project.ext_org}/${rootProject.name}.git"
}
licenses {
license {
Expand Down
8 changes: 4 additions & 4 deletions gradle/java-publish.gradle
Expand Up @@ -86,11 +86,11 @@ model {
resolveStrategy = Closure.DELEGATE_FIRST
name project.ext.artifactId
description project.description
url "https://github.com/${project.org}/${project.name}"
url "https://github.com/${project.org}/${rootProject.name}"
scm {
url "https://github.com/${project.org}/${project.name}"
connection "scm:git:git://github.com/${project.org}/${project.name}"
developerConnection "scm:git:ssh:git@github.com/${project.org}/${project.name}"
url "https://github.com/${project.org}/${rootProject.name}"
connection "scm:git:https://github.com/${project.org}/${rootProject.name}.git"
developerConnection "scm:git:ssh:git@github.com/${project.org}/${rootProject.name}.git"
}
licenses {
license {
Expand Down
1 change: 1 addition & 0 deletions plugin-gradle/CHANGES.md
@@ -1,6 +1,7 @@
# spotless-plugin-gradle releases

### Version 3.26.0-SNAPSHOT - TBD ([javadoc](https://diffplug.github.io/spotless/javadoc/snapshot/), [snapshot](https://oss.sonatype.org/content/repositories/snapshots/com/diffplug/spotless/spotless-plugin-gradle/))
* Fix project URLs in poms. ([#478](https://github.com/diffplug/spotless/pull/478))

### Version 3.25.0 - October 6th 2019 ([javadoc](https://diffplug.github.io/spotless/javadoc/spotless-plugin-gradle/3.25.0/), [jcenter](https://bintray.com/diffplug/opensource/spotless-plugin-gradle/3.25.0))

Expand Down
1 change: 1 addition & 0 deletions plugin-maven/CHANGES.md
@@ -1,6 +1,7 @@
# spotless-plugin-maven releases

### Version 1.26.0-SNAPSHOT - TBD ([javadoc](https://diffplug.github.io/spotless/javadoc/spotless-maven-plugin/snapshot/), [snapshot](https://oss.sonatype.org/content/repositories/snapshots/com/diffplug/spotless/spotless-maven-plugin/))
* Fix project URLs in poms. ([#478](https://github.com/diffplug/spotless/pull/478))

### Version 1.25.1 - October 7th 2019 ([javadoc](https://diffplug.github.io/spotless/javadoc/spotless-maven-plugin/1.25.1/), [jcenter](https://bintray.com/diffplug/opensource/spotless-maven-plugin/1.25.1))

Expand Down