Mercurial > hg > Members > tatsuki > bench > jungle-core
view build.gradle @ 78:540a27dde42f
Delete EnableNode and EnableNodeWrapper
but not repair test program
author | one |
---|---|
date | Sun, 31 Aug 2014 00:44:35 +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' }