Merge branch 'analytics-dev' into autoconfig
Original commit: elastic/x-pack-elasticsearch@5207fe6349
This commit is contained in:
commit
1ecd93497b
|
@ -0,0 +1,56 @@
|
|||
description = 'Builds the Prelert Engine native binaries and Java classes'
|
||||
|
||||
import org.gradle.internal.os.OperatingSystem
|
||||
|
||||
project.ext.make = OperatingSystem.current().isLinux() ? "make" : "gnumake"
|
||||
project.ext.numCpus = Runtime.runtime.availableProcessors()
|
||||
|
||||
task cppclean(type: Exec) {
|
||||
commandLine make
|
||||
args 'clean'
|
||||
}
|
||||
|
||||
task cppobjcompile(type: Exec) {
|
||||
commandLine make
|
||||
args '-j' + numCpus, 'objcompile'
|
||||
}
|
||||
|
||||
task cppmake(type: Exec) {
|
||||
commandLine make
|
||||
args '-j' + numCpus
|
||||
}
|
||||
|
||||
task cpptest(type: Exec) {
|
||||
commandLine make
|
||||
args '-j' + numCpus, 'test'
|
||||
}
|
||||
|
||||
subprojects {
|
||||
apply plugin: 'maven'
|
||||
apply plugin: 'java'
|
||||
|
||||
compileJava.options.encoding = 'UTF-8'
|
||||
compileTestJava.options.encoding = 'UTF-8'
|
||||
|
||||
group = 'com.prelert'
|
||||
version = '2.2.0'
|
||||
sourceCompatibility = 1.8
|
||||
targetCompatibility = 1.8
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
maven { url "http://repo.maven.apache.org/maven2" }
|
||||
}
|
||||
|
||||
configurations.all {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile group: 'log4j', name: 'log4j', version:'1.2.17'
|
||||
testCompile group: 'org.hamcrest', name: 'hamcrest-core', version: '1.3'
|
||||
testCompile group: 'junit', name: 'junit', version:'4.11'
|
||||
testCompile group: 'org.ini4j', name: 'ini4j', version:'0.5.2'
|
||||
testCompile group: 'org.mockito', name: 'mockito-all', version:'1.10.19'
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
org.gradle.daemon=false
|
|
@ -0,0 +1,18 @@
|
|||
rootProject.name = 'prelert-engine-api'
|
||||
include ':engine-api-java'
|
||||
include ':prelert-engine-api-common'
|
||||
include ':data-extractors'
|
||||
include ':engine-api'
|
||||
include ':prelert-engine-api-client'
|
||||
include ':engine-api-server'
|
||||
include ':elasticsearch-persistence'
|
||||
include ':engine-node'
|
||||
|
||||
project(':engine-api-java').projectDir = "$rootDir/java/apps/engineApi" as File
|
||||
project(':prelert-engine-api-common').projectDir = "$rootDir/java/apps/engineApi/api-common" as File
|
||||
project(':data-extractors').projectDir = "$rootDir/java/apps/engineApi/data-extractors" as File
|
||||
project(':engine-api').projectDir = "$rootDir/java/apps/engineApi/engine-api" as File
|
||||
project(':prelert-engine-api-client').projectDir = "$rootDir/java/apps/engineApi/apiClient" as File
|
||||
project(':engine-api-server').projectDir = "$rootDir/java/apps/engineApi/apiServer" as File
|
||||
project(':elasticsearch-persistence').projectDir = "$rootDir/java/apps/engineApi/elasticsearch-persistence" as File
|
||||
project(':engine-node').projectDir = "$rootDir/java/apps/engine-node" as File
|
Loading…
Reference in New Issue