File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
plugin-test/src/test/groovy/org/gradle/github/dependencygraph
src/main/kotlin/org/gradle/github/dependencygraph/internal Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 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
2020fi
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ tasks.test {
6767tasks.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 */
135135gradlePlugin {
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") {
195195githubRelease {
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 )
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ package org.gradle.github.dependencygraph.internal.json
33data 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)
You can’t perform that action at this time.
0 commit comments