forked from freiheit-com/sqlapi4j
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
50 lines (39 loc) · 1.25 KB
/
build.gradle
File metadata and controls
50 lines (39 loc) · 1.25 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
apply plugin: 'base'
allprojects { project ->
// --------------------------------
// Increment version for deployment
// --------------------------------
version = '0.2.2-SNAPSHOT'
apply plugin: 'eclipse'
apply plugin: 'idea'
repositories {
maven { url 'http://repo1.maven.org/maven2/' }
maven { url 'http://www.ibiblio.org/maven2/' }
flatDir { dirs "${project.rootDir}/lib/" }
}
buildscript {
repositories {
maven { url 'http://repo1.maven.org/maven2/' }
maven { url 'http://www.ibiblio.org/maven2/' }
maven { url "${project.rootDir}/lib" }
}
}
}
def javaProjects = [':core',
':dao',
':domain',
':tx',
':tx-guice'
].collect { project it };
configure (javaProjects) {
//apply plugin: 'checkstyle'
//apply plugin: 'findbugs'
apply plugin: 'java'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
dependencies {
testCompile 'org.testng:testng:6.1.1'
compile "com.google.code.findbugs:jsr305:1.3.9",
"postgresql:postgresql:8.3-603.jdbc4",
'org.slf4j:slf4j-api:1.5.10'
}
}