Skip to content

Commit

Permalink
🔖 0.26.5 Upgrade dependencies; compatibility with Gradle 7.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
calvertdw committed Dec 20, 2021
1 parent 5892338 commit 4d80cce
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ plugins {
}

group = "us.ihmc"
version = "0.26.4"
version = "0.26.5"

repositories {
jcenter()
maven { url = uri("https://plugins.gradle.org/m2/") } // needed for included plugins
}

dependencies {
api("ca.cutterslade.gradle:gradle-dependency-analyze:1.7.1") {
api("ca.cutterslade.gradle:gradle-dependency-analyze:1.8.3") {
exclude("junit", "junit")
}
api("com.dorongold.plugins:task-tree:2.1.0")
api("com.konghq:unirest-java:3.11.12")
api("com.konghq:unirest-java:3.13.4")
api("org.jfrog.artifactory.client:artifactory-java-client-services:2.9.2")
api("guru.nidi:graphviz-kotlin:0.18.1")

testApi("org.junit.jupiter:junit-jupiter-api:5.7.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.2")
testApi("org.junit.jupiter:junit-jupiter-api:5.8.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.2")
}

tasks.withType<Test> {
Expand Down
5 changes: 5 additions & 0 deletions src/main/kotlin/us/ihmc/build/IHMCDependenciesExtension.kt
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ open class IHMCDependenciesExtension(private val mainProject: Project,
return delegate.create(modifyDependency(dependencyNotation))
}

override fun enforcedPlatform(dependencyProvider: Provider<MinimalExternalModuleDependency>): Provider<MinimalExternalModuleDependency>
{
TODO("Not yet implemented")
}

override fun <T : Any?, U : ExternalModuleDependency?> addProvider(configurationName: String,
dependencyNotation: Provider<T>,
configuration: Action<in U>)
Expand Down

0 comments on commit 4d80cce

Please sign in to comment.