Skip to content

Commit

Permalink
Renamed packages for consistency
Browse files Browse the repository at this point in the history
Expanded the 'gh' abbrev to 'github' (#65)
  • Loading branch information
mockitoguy committed Jan 5, 2021
1 parent ab1bf58 commit 213b04e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ Complete task configuration
### 'org.shipkit.shipkit-github-release'

Basic task configuration
(source: [GithubReleasePluginIntegTest](https://github.com/shipkit/shipkit-changelog/blob/master/src/integTest/groovy/org/shipkit/gh/release/GithubReleasePluginIntegTest.groovy))
(source: [GithubReleasePluginIntegTest](https://github.com/shipkit/shipkit-changelog/blob/master/src/integTest/groovy/org/shipkit/github/release/GithubReleasePluginIntegTest.groovy))

```groovy
plugins {
Expand All @@ -250,7 +250,7 @@ Basic task configuration
```

Complete task configuration
(source: [GithubReleasePluginIntegTest](https://github.com/shipkit/shipkit-changelog/blob/master/src/integTest/groovy/org/shipkit/gh/release/GithubReleasePluginIntegTest.groovy))
(source: [GithubReleasePluginIntegTest](https://github.com/shipkit/shipkit-changelog/blob/master/src/integTest/groovy/org/shipkit/github/release/GithubReleasePluginIntegTest.groovy))

```groovy
plugins {
Expand Down
4 changes: 2 additions & 2 deletions gradle/release.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ gradlePlugin {
githubReleaseDeprecated {
//TODO please remove deprecated plugin after we complete the rename, see #65
id = 'org.shipkit.shipkit-gh-release'
implementationClass = 'org.shipkit.gh.release.GithubReleasePlugin'
implementationClass = 'org.shipkit.github.release.GithubReleasePlugin'
}
githubRelease {
id = 'org.shipkit.shipkit-github-release'
implementationClass = 'org.shipkit.gh.release.GithubReleasePlugin'
implementationClass = 'org.shipkit.github.release.GithubReleasePlugin'
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.shipkit.gh.release
package org.shipkit.github.release


import org.junit.Rule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import org.gradle.api.logging.Logging;
import org.gradle.api.tasks.Optional;
import org.gradle.api.tasks.*;
import org.shipkit.github.release.GithubReleaseTask;

import java.io.File;
import java.util.*;
Expand Down Expand Up @@ -159,7 +160,7 @@ public String getGithubToken() {
/**
* Github token used to pull Github issues.
* The same token is used to post a new release:
* {@link org.shipkit.gh.release.GithubReleaseTask#setGithubToken(String)}
* {@link GithubReleaseTask#setGithubToken(String)}
*/
public void setGithubToken(String githubToken) {
this.githubToken = githubToken;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.shipkit.gh.release;
package org.shipkit.github.release;

import org.gradle.api.Plugin;
import org.gradle.api.Project;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.shipkit.gh.release;
package org.shipkit.github.release;

import com.eclipsesource.json.Json;
import com.eclipsesource.json.JsonObject;
Expand Down

0 comments on commit 213b04e

Please sign in to comment.