view build.gradle @ 83:d8e7f6e13169

add mindMap
author tatsuki
date Wed, 03 Sep 2014 15:56:40 +0900
parents 0c4a0a1c2f7f
children 5b7e45464bb8
line wrap: on
line source

apply plugin: "java"
apply plugin: "eclipse"

sourceCompatibility = 1.6
targetCompatibility = 1.6
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
version = '1.0'

repositories {
  mavenCentral()
}

dependencies {
  compile "commons-collections:commons-collections:3.2.1"
    compile "org.apache.maven.surefire:surefire-junit4:2.13"
    compile "com.google.guava:guava:12.0"
    compile "org.functionaljava:functionaljava:3.1"
    testCompile "junit:junit:4.7"
}

jar {
  manifest {
    attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': version
  }
  from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
  archiveName = 'jungle-core.jar'
}