Skip to content

Commit

Permalink
Use v1.1.0 of plugin from staging
Browse files Browse the repository at this point in the history
  • Loading branch information
bigdaz committed Jan 11, 2024
1 parent 71bc22a commit ee9f960
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ buildscript {
def envVarName = name.toUpperCase().replace('.', '_').replace('-', '_')
return System.getProperty(name) ?: System.getenv(envVarName)
}
def pluginRepositoryUrl = getInputParam('gradle.plugin-repository.url') ?: 'https://plugins.gradle.org/m2'
def pluginRepositoryUrl = getInputParam('gradle.plugin-repository.url') ?: 'https://plugins.grdev.net/m2'

repositories {
maven { url pluginRepositoryUrl }
}
dependencies {
classpath "org.gradle:github-dependency-graph-gradle-plugin:1.0.0"
classpath "org.gradle:github-dependency-graph-gradle-plugin:1.1.0"
}
}
apply plugin: org.gradle.github.GitHubDependencyGraphPlugin
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ if (isTopLevelBuild) {
return
}

def githubOutput = System.getenv("GITHUB_OUTPUT")
if (githubOutput) {
new File(githubOutput) << "dependency-graph-file=${reportFile.absolutePath}\n"
}

println "Generating dependency graph into '${reportFile}'"
}

Expand Down

0 comments on commit ee9f960

Please sign in to comment.