-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
40 lines (30 loc) · 1.06 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
plugins {
id "org.jruyi.thrift" version "0.4.0"
}
apply plugin: 'eclipse'
apply plugin: 'java'
apply plugin: 'distribution'
group = 'net.melastmohican.osquery'
version = '0.1-SNAPSHOT'
description = """osquery-java"""
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
maven { url "http://central" }
maven { url "http://maven.tmatesoft.com/content/repositories" }
maven { url "http://repo.grails.org/grails/core" }
}
dependencies {
compile group: 'com.kohlschutter.junixsocket', name: 'junixsocket-native-common', version:'2.0.4'
compile group: 'com.kohlschutter.junixsocket', name: 'junixsocket-common', version:'2.0.4'
compile group: 'org.apache.thrift', name: 'libthrift', version:'0.9.3'
compile group: 'com.google.code.gson', name: 'gson', version:'2.7'
testCompile(group: 'junit', name: 'junit', version:'4.12') {
exclude(module: 'hamcrest-core')
}
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version:'1.3'
}
compileThrift {
sourceDir "src/main/thrift"
generator 'java'
}