Navigation Menu

Skip to content
This repository has been archived by the owner on Jan 7, 2020. It is now read-only.

Commit

Permalink
Gradle 1.2 cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
andresteingress committed Sep 18, 2012
1 parent 795caf8 commit a10bef7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
16 changes: 8 additions & 8 deletions build.gradle
@@ -1,11 +1,17 @@
dependsOnChildren()

buildscript { buildscript {
repositories { repositories {
mavenCentral() mavenCentral()
} }
} }


project.ext {
asm = "asm:asm:3.3.1"
junit = "junit:junit:4.10"

sourceCompatibility = org.gradle.api.JavaVersion.VERSION_1_5
targetCompatibility = org.gradle.api.JavaVersion.VERSION_1_5
}

allprojects { allprojects {
apply plugin: 'eclipse' apply plugin: 'eclipse'
apply plugin: 'idea' apply plugin: 'idea'
Expand All @@ -14,13 +20,7 @@ allprojects {
group = "org.gcontracts" group = "org.gcontracts"
version = "1.2.6-SNAPSHOT" version = "1.2.6-SNAPSHOT"


asm = "asm:asm:3.3.1"
junit = "junit:junit:4.10"

description = "GContracts provides closure annotations to support Programming by Contract for Groovy" description = "GContracts provides closure annotations to support Programming by Contract for Groovy"

targetCompatibility = "1.5"
sourceCompatibility = "1.5"
} }


subprojects { subprojects {
Expand Down
2 changes: 0 additions & 2 deletions gcontracts-doc/build.gradle
@@ -1,5 +1,3 @@
dependsOn(':gcontracts-core')

project(":gcontracts-doc") { project(":gcontracts-doc") {
dependencies { dependencies {
compile project(':gcontracts-core') compile project(':gcontracts-core')
Expand Down
2 changes: 0 additions & 2 deletions gcontracts-grails/build.gradle
@@ -1,5 +1,3 @@
dependsOn(':gcontracts-core')

project(":gcontracts-grails") { project(":gcontracts-grails") {
def springVersion = "3.0.5.RELEASE" def springVersion = "3.0.5.RELEASE"


Expand Down

0 comments on commit a10bef7

Please sign in to comment.