Skip to content

Commit

Permalink
Fix Travis build issue where jing depends on Saxon 8.7; use latest Saxon
Browse files Browse the repository at this point in the history
  • Loading branch information
ndw committed Mar 3, 2015
1 parent 37c5ae3 commit ab95b0c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ configurations {
}
}

configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.name == 'saxon' && details.requested.version == '8.7') {
details.useTarget "net.sf.saxon:Saxon-HE:" + saxonVersion
}
}
}

dependencies {
izpack 'org.codehaus.izpack:izpack-standalone-compiler:4.3.4'

Expand Down

0 comments on commit ab95b0c

Please sign in to comment.