Skip to content

Commit

Permalink
Merge pull request #1 from jillesvangurp/es7.3.1
Browse files Browse the repository at this point in the history
upgrade to 7.3.1
  • Loading branch information
Iago David authored Sep 9, 2019
2 parents fca91a3 + a462481 commit c7009ef
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ buildscript {
}

dependencies {
classpath "org.elasticsearch.gradle:build-tools:7.3.0"
classpath "org.elasticsearch.gradle:build-tools:7.3.1"
}
}

group = 'com.o19s'
version = '1.1.1-es7.3.0'
version = '1.1.2-es7.3.1'

apply plugin: 'java'
apply plugin: 'idea'
Expand Down Expand Up @@ -51,10 +51,10 @@ dependencies {
compile 'org.ow2.asm:asm:5.0.4'
compile 'org.ow2.asm:asm-commons:5.0.4'
compile 'org.ow2.asm:asm-tree:5.0.4'
compile 'org.elasticsearch:elasticsearch:7.3.0'
compile 'org.elasticsearch:elasticsearch:7.3.1'
compile 'com.o19s:RankyMcRankFace:0.1.1'
compile "com.github.spullara.mustache.java:compiler:0.9.3"
testCompile 'org.elasticsearch.test:framework:7.3.0'
testCompile 'org.elasticsearch.test:framework:7.3.1'

}

Expand All @@ -65,12 +65,14 @@ dependencyLicenses {
mapping from: /compiler-.*/, to: 'lucene'
}

configurations.all {
resolutionStrategy.dependencySubstitution {
substitute project(':rest-api-spec') with module ("org.elasticsearch:rest-api-spec:7.3.0")
}

// https://github.com/elastic/elasticsearch/issues/45891#issuecomment-525399411
configurations.restSpec.withDependencies { dependencies ->
dependencies.clear()
dependencies.add(project.dependencies.create("org.elasticsearch:rest-api-spec:7.3.1"))
}


// Set to false to not use elasticsearch checkstyle rules
checkstyleMain.enabled = true
checkstyleTest.enabled = true
Expand Down

0 comments on commit c7009ef

Please sign in to comment.