-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathbuild.gradle.orig
41 lines (31 loc) · 1.02 KB
/
build.gradle.orig
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
/* Configurations here represents common characteristics shared for each of the sub projects*/
apply plugin: "java"
apply plugin: 'eclipse'
group = 'com.variamos'
version = '1.1.0.1'
compileJava.options.encoding = 'UTF-8'
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
//options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
}
<<<<<<< HEAD
=======
>>>>>>> de0ebfe4... fix build on the master branch
subprojects {
/* the Java plugin adds several tasks like clean, assemble,
build, etc, which make it easy to work with the build process when we follow conventions such as src/main/java and src/main/test as main folders*/
apply plugin: "java"
apply plugin: 'eclipse'
repositories {
mavenCentral() }
dependencies {
compile group: 'jpl', name: 'jpl', version: '7.4.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
}
ext {
JplLibraryPath = "/usr/lib/x86_64-linux-gnu/jni/"
}