forked from ZooMMX/Facturatron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
31 lines (25 loc) · 1.26 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
* This build file was auto generated by running the Gradle 'buildSetup' task
* by 'octavioruizcastillo' at 'Tue Jan 28 20:59:34 CST 2014' with Gradle 1.6
*
* This generated file contains an out - commented sample java project
* to get you started. For a quick start with Gradle have a look at the Java Quickstart
* chapter in the Gradle Userguide available at /Users/octavioruizcastillo/AppDev/Bibliotecas/gradle-1.6/docs/userguide/tutorial_java_projects.html
*/
/*
apply plugin:'java' // applies the java plugin
repositories{
mavenCentral() // Use 'maven central' for resolving your thirdparty dependencies.
// you can declare any maven/ivy/file repository to resolve your thirdparty dependencies
}
dependencies{
// in this section you declare your dependencies for your production and your test code.
// the production code uses the slf4j logging api at compile time
compile 'org.slf4j:slf4j-api:1.7.5'
// 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.11"
}
*/