view build.gradle @ 28:2ac12de0aaeb default tip

mongo BenchMark change
author tatsuki
date Tue, 05 May 2015 01:19:04 +0900
parents 306441e23b8b
children
line wrap: on
line source

apply plugin: 'java'
apply plugin: 'maven'
apply plugin: "eclipse"
apply plugin: 'idea'

group = 'jungle-bench'
version = '0.0.1-SNAPSHOT'

description = """"""

sourceCompatibility = 1.8
targetCompatibility = 1.8



repositories {

    maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
    compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.0.0'
    compile group: 'junit', name: 'junit', version: '4.7'
    compile fileTree(dir: 'lib', include: '*.jar')
}

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