Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugin-self-test
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ else
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $GITHUB_TOKEN"\
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/gradle/github-dependency-extractor/dependency-graph/snapshots \
https://api.github.com/repos/gradle/github-dependency-graph-gradle-plugin/dependency-graph/snapshots \
-d @build/reports/github-dependency-graph-plugin/github-dependency-snapshot.json
fi
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ abstract class BaseExtractorTest extends Specification {
assert detector.name.contains("Gradle")
assert detector.version != null
assert detector.version != ""
assert detector.url == "https://github.com/gradle/github-dependency-extractor"
assert detector.url == "https://github.com/gradle/github-dependency-graph-gradle-plugin"
return json["manifests"] as Map
}

Expand Down
10 changes: 5 additions & 5 deletions plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ tasks.test {
tasks.withType<Jar>().configureEach {
manifest {
attributes["Implementation-Version"] = archiveVersion.get()
attributes["Implementation-Title"] = "Gradle GitHub Dependency Extractor"
attributes["Implementation-Vendor"] = "Gradle GitHub Dependency Extractor"
attributes["Implementation-Title"] = "GitHub Dependency Graph Gradle Plugin"
attributes["Implementation-Vendor"] = "Gradle Inc"
}
}

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

plugins {
create("dependencyGraphPlugin") {
Expand Down Expand Up @@ -195,7 +195,7 @@ val createReleaseTag = tasks.register<CreateGitTag>("createReleaseTag") {
githubRelease {
setToken(System.getenv("GITHUB_DEPENDENCY_GRAPH_GIT_TOKEN") ?: "")
owner.set("gradle")
repo.set("github-dependency-extractor")
repo.set("github-dependency-graph-gradle-plugin")
releaseName.set(releaseVersion)
tagName.set(releaseTag)
prerelease.set(true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ abstract class DependencyExtractor :
if (thrownExceptions.isNotEmpty()) {
throw DefaultMultiCauseException(
"The ${GitHubDependencyGraphPlugin::class.simpleName} plugin encountered errors while extracting dependencies. " +
"Please report this issue at: https://github.com/gradle/github-dependency-extractor/issues",
"Please report this issue at: https://github.com/gradle/github-dependency-graph-gradle-plugin/issues",
thrownExceptions
)
}
Expand All @@ -201,7 +201,7 @@ abstract class DependencyExtractor :
} catch (e: RuntimeException) {
throw GradleException(
"The ${GitHubDependencyGraphPlugin::class.simpleName} plugin encountered errors while writing the dependency snapshot json file. " +
"Please report this issue at: https://github.com/gradle/github-dependency-extractor/issues",
"Please report this issue at: https://github.com/gradle/github-dependency-graph-gradle-plugin/issues",
e
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ package org.gradle.github.dependencygraph.internal.json
data class GitHubDetector(
val name: String = GitHubDetector::class.java.`package`.implementationTitle,
val version: String = GitHubDetector::class.java.`package`.implementationVersion,
val url: String = "https://github.com/gradle/github-dependency-extractor"
val url: String = "https://github.com/gradle/github-dependency-graph-gradle-plugin"
)