forked from Maxar-Corp/mn-data-info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (37 loc) · 1.1 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
plugins {
id "io.spring.dependency-management" version "1.0.6.RELEASE"
id "com.github.johnrengelman.shadow" version "4.0.0"
}
apply plugin: "application"
apply plugin: "groovy"
version "0.1"
group "mn.data.info"
repositories {
mavenLocal()
mavenCentral()
maven { url "https://jcenter.bintray.com" }
maven { url "https://nexus.ossim.io/nexus/content/repositories/ossim-deps" }
}
dependencyManagement {
imports {
mavenBom 'io.micronaut:micronaut-bom:1.0.0'
}
}
dependencies {
compile "org.ossim:joms:1.9.0-SNAPSHOT"
compile "io.micronaut:micronaut-runtime-groovy"
compile "io.micronaut:micronaut-validation"
compile "io.micronaut:micronaut-http-client"
compile "io.micronaut:micronaut-http-server-netty"
compileOnly "io.micronaut:micronaut-inject-groovy"
runtime "ch.qos.logback:logback-classic:1.2.3"
testCompile "io.micronaut:micronaut-inject-groovy"
testCompile( "org.spockframework:spock-core" ) {
exclude group: "org.codehaus.groovy", module: "groovy-all"
}
}
shadowJar {
mergeServiceFiles()
}
run.jvmArgs( '-noverify', '-XX:TieredStopAtLevel=1' )
mainClassName = "mn.data.info.Application"