Skip to content

Commit

Permalink
Use fixed versions, since poms were wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoberstar committed Jun 18, 2016
1 parent 763bfb3 commit b5dc669
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 31 deletions.
15 changes: 0 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ buildscript {

apply plugin: 'org.ajoberstar.semver-vcs-grgit'

ext.defaultVersions = [
'org.junit': '5.0.0-SNAPSHOT',
'org.clojure:clojure': '1.9.0-alpha5',
'org.clojure:tools.namespace': '0.2.11'
]

allprojects {
group = 'org.ajoberstar.jupiter'

Expand Down Expand Up @@ -60,13 +54,4 @@ allprojects {
}
}
}

configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.version == 'default') {
def version = defaultVersions["${details.requested.group}:${details.requested.name}"] ?: defaultVersions[details.requested.group]
details.useVersion version
}
}
}
}
6 changes: 3 additions & 3 deletions jupiter-engine-clojure.test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ plugins {
}

dependencies {
compile 'org.junit:junit-engine-api:default'
compile 'org.clojure:clojure:default'
compile 'org.junit:junit-engine-api:5.0.0-SNAPSHOT'
compile 'org.clojure:clojure:1.9.0-alpha5'
compile project(':jupiter-lang-clojure')

testCompile 'junit:junit:4.12'
testCompile 'org.junit:junit-launcher:default'
testCompile 'org.junit:junit-launcher:5.0.0-SNAPSHOT'
}

task sourcesJar(type: Jar) {
Expand Down
6 changes: 3 additions & 3 deletions jupiter-lang-clojure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ plugins {
}

dependencies {
compile 'org.junit:junit-engine-api:default'
compile 'org.clojure:clojure:default'
compile 'org.clojure:tools.namespace:default'
compile 'org.junit:junit-engine-api:5.0.0-SNAPSHOT'
compile 'org.clojure:clojure:1.9.0-alpha5'
compile 'org.clojure:tools.namespace:0.2.11'

testCompile 'junit:junit:4.12'
}
Expand Down
10 changes: 0 additions & 10 deletions jupiter-sample-console/build.gradle

This file was deleted.

0 comments on commit b5dc669

Please sign in to comment.