Skip to content

Commit

Permalink
Excavator: Upgrade buildscript dependencies (#1680)
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-excavator-bot authored Mar 7, 2022
1 parent 06f7214 commit a7c6c53
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
16 changes: 15 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ buildscript {

dependencies {
classpath 'com.palantir.gradle.externalpublish:gradle-external-publish-plugin:1.11.0'
classpath 'com.palantir.gradle.conjure:gradle-conjure:4.27.2'
classpath 'com.palantir.gradle.conjure:gradle-conjure:5.20.0'
classpath 'com.palantir.javaformat:gradle-palantir-java-format:2.17.0'
classpath 'com.palantir.baseline:gradle-baseline-java:4.74.0'
classpath 'com.palantir.gradle.consistentversions:gradle-consistent-versions:2.8.0'
Expand Down Expand Up @@ -82,3 +82,17 @@ subprojects {
systemProperty 'recreate', System.getProperty('recreate', 'false')
}
}

configurations {
conjureJava
}

configurations.conjureJava.exclude group: 'com.palantir.conjure.java'

afterEvaluate {
dependencies {
conjureJava files(project(':conjure-java').tasks.distTar.archiveFile) {
builtBy project(':conjure-java').tasks.distTar
}
}
}
7 changes: 0 additions & 7 deletions gradle/verifier.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@ conjure {
}
}

configurations.conjureJava.exclude group: 'com.palantir.conjure.java'
dependencies {
conjureJava files(project(':conjure-java').tasks.distTar.archiveFile) {
builtBy project(':conjure-java').tasks.distTar
}
}

subprojects {
dependencies {
api project(':conjure-lib')
Expand Down

0 comments on commit a7c6c53

Please sign in to comment.