Skip to content

Commit c4f0b20

Browse files
authored
Merge pull request #38 from gradle/dd/project-rename
Update references to project name/url
2 parents 59ca863 + c91efac commit c4f0b20

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

plugin-self-test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ else
1515
-H "Accept: application/vnd.github+json" \
1616
-H "Authorization: Bearer $GITHUB_TOKEN"\
1717
-H "X-GitHub-Api-Version: 2022-11-28" \
18-
https://api.github.com/repos/gradle/github-dependency-extractor/dependency-graph/snapshots \
18+
https://api.github.com/repos/gradle/github-dependency-graph-gradle-plugin/dependency-graph/snapshots \
1919
-d @build/reports/github-dependency-graph-plugin/github-dependency-snapshot.json
2020
fi

plugin-test/src/test/groovy/org/gradle/github/dependencygraph/BaseExtractorTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ abstract class BaseExtractorTest extends Specification {
136136
assert detector.name.contains("Gradle")
137137
assert detector.version != null
138138
assert detector.version != ""
139-
assert detector.url == "https://github.com/gradle/github-dependency-extractor"
139+
assert detector.url == "https://github.com/gradle/github-dependency-graph-gradle-plugin"
140140
return json["manifests"] as Map
141141
}
142142

plugin/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ tasks.test {
6767
tasks.withType<Jar>().configureEach {
6868
manifest {
6969
attributes["Implementation-Version"] = archiveVersion.get()
70-
attributes["Implementation-Title"] = "Gradle GitHub Dependency Extractor"
71-
attributes["Implementation-Vendor"] = "Gradle GitHub Dependency Extractor"
70+
attributes["Implementation-Title"] = "GitHub Dependency Graph Gradle Plugin"
71+
attributes["Implementation-Vendor"] = "Gradle Inc"
7272
}
7373
}
7474

@@ -133,8 +133,8 @@ tasks.named("jar").configure {
133133
* Configuration for publishing the plugin, locally and to the Gradle Plugin Portal.
134134
*/
135135
gradlePlugin {
136-
website.set("https://github.com/gradle/github-dependency-extractor")
137-
vcsUrl.set("https://github.com/gradle/github-dependency-extractor")
136+
website.set("https://github.com/gradle/github-dependency-graph-gradle-plugin")
137+
vcsUrl.set("https://github.com/gradle/github-dependency-graph-gradle-plugin")
138138

139139
plugins {
140140
create("dependencyGraphPlugin") {
@@ -195,7 +195,7 @@ val createReleaseTag = tasks.register<CreateGitTag>("createReleaseTag") {
195195
githubRelease {
196196
setToken(System.getenv("GITHUB_DEPENDENCY_GRAPH_GIT_TOKEN") ?: "")
197197
owner.set("gradle")
198-
repo.set("github-dependency-extractor")
198+
repo.set("github-dependency-graph-gradle-plugin")
199199
releaseName.set(releaseVersion)
200200
tagName.set(releaseTag)
201201
prerelease.set(true)

plugin/src/main/kotlin/org/gradle/github/dependencygraph/internal/DependencyExtractor.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ abstract class DependencyExtractor :
192192
if (thrownExceptions.isNotEmpty()) {
193193
throw DefaultMultiCauseException(
194194
"The ${GitHubDependencyGraphPlugin::class.simpleName} plugin encountered errors while extracting dependencies. " +
195-
"Please report this issue at: https://github.com/gradle/github-dependency-extractor/issues",
195+
"Please report this issue at: https://github.com/gradle/github-dependency-graph-gradle-plugin/issues",
196196
thrownExceptions
197197
)
198198
}
@@ -201,7 +201,7 @@ abstract class DependencyExtractor :
201201
} catch (e: RuntimeException) {
202202
throw GradleException(
203203
"The ${GitHubDependencyGraphPlugin::class.simpleName} plugin encountered errors while writing the dependency snapshot json file. " +
204-
"Please report this issue at: https://github.com/gradle/github-dependency-extractor/issues",
204+
"Please report this issue at: https://github.com/gradle/github-dependency-graph-gradle-plugin/issues",
205205
e
206206
)
207207
}

plugin/src/main/kotlin/org/gradle/github/dependencygraph/internal/json/GitHubDetector.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ package org.gradle.github.dependencygraph.internal.json
33
data class GitHubDetector(
44
val name: String = GitHubDetector::class.java.`package`.implementationTitle,
55
val version: String = GitHubDetector::class.java.`package`.implementationVersion,
6-
val url: String = "https://github.com/gradle/github-dependency-extractor"
6+
val url: String = "https://github.com/gradle/github-dependency-graph-gradle-plugin"
77
)

0 commit comments

Comments
 (0)