-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
73 lines (58 loc) · 1.49 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
buildscript {
repositories {
// mavenLocal()
mavenCentral()
jcenter()
// maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
dependencies {
classpath 'org.anarres.gradle:gradle-stdproject-plugin:1.0.8'
classpath 'org.anarres.gradle:gradle-jcpp-plugin:1.0.2'
}
}
ext.githubProjectName = 'lzo-java'
apply plugin: 'org.anarres.stdproject'
stdproject {
}
subprojects {
group = "org.anarres.lzo"
apply plugin: 'org.anarres.stdmodule'
stdmodule {
description "The LZO compression codec in pure Java."
author id: 'shevek', name: 'Shevek', email: 'github@anarres.org'
license 'GPL-3.0'
}
dependencies {
compile 'com.google.code.findbugs:annotations:2.0.3'
testCompile 'org.slf4j:slf4j-api:1.7.7'
testCompile 'commons-io:commons-io:2.4'
}
sourceCompatibility = 1.5
animalsniffer {
signature = "org.codehaus.mojo.signature:java16:+@signature"
}
}
project(':lzo-core') {
apply plugin: 'jcpp'
dependencies {
compile 'commons-logging:commons-logging:1.1.1'
}
jcpp {
localIncludePath << project.file("src/main/jcpp/include")
localIncludePath << project.file("src/main/jcpp/src")
}
}
project(':lzo-commons') {
dependencies {
compile project(':lzo-core')
compile 'org.apache.commons:commons-compress:1.13'
testCompile project(':lzo-core').sourceSets.test.output
}
}
project(':lzo-hadoop') {
dependencies {
compile project(':lzo-core')
compile 'org.apache.hadoop:hadoop-core:1.2.1'
testCompile project(':lzo-core').sourceSets.test.output
}
}