Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
/*
* This build file was auto generated by running the Gradle 'init' task
* by 'royokou' at '1/12/16 4:47 PM' with Gradle 2.10
*
* This generated file contains a commented-out sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* user guide available at https://docs.gradle.org/2.10/userguide/tutorial_java_projects.html
*/
// Apply the java plugin to add support for Java
apply plugin: 'java'
// In this section you declare where to find the dependencies of your project
repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
task compile(type: Copy,dependsOn: compileJava) {
from configurations.runtime
into 'build/lib'
}
// In this section you declare the dependencies for your production and test code
dependencies {
// The production code uses the SLF4J logging API at compile time
compile 'org.slf4j:slf4j-api:1.7.13'
compile 'org.apache.commons:commons-lang3:3.0'
compile 'org.apache.derby:derby:10.12.1.1'
compile 'com.google.guava:guava:19.0'
compile 'pl.pragmatists:JUnitParams:1.0.2'
compile 'uk.com.robust-it:cloning:1.8.1'
compile 'com.googlecode.combinatoricslib:combinatoricslib:2.1'
compile 'org.dbunit:dbunit:2.4.9'
compile 'org.hamcrest:hamcrest-core:1.3'
compile 'com.beust:jcommander:1.48'
compile 'org.ow2.jonas.cxf.transport.mdb:mdb-modules-transport:2.2.12-0.1'
compile 'org.objenesis:objenesis:1.2'
compile 'p6spy:p6spy:1.3'
compile 'org.hsqldb:sqltool:2.2.6'
compile 'postgresql:postgresql:9.1-901.jdbc4'
compile 'org.xerial:sqlite-jdbc:3.7.2'
compile 'com.thoughtworks.xstream:xstream:1.4.2'
compile 'org.hsqldb:hsqldb:2.2.8'
compile 'org.fluttercode.datafactory:datafactory:0.8'
// Declare the dependency for your favourite test framework you want to use in your tests.
// TestNG is also supported by the Gradle Test task. Just change the
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
// 'test.useTestNG()' to your build script.
testCompile 'junit:junit:4.12'
}