File: build.gradle

package info (click to toggle)
libminidns-java 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,576 kB
  • sloc: java: 13,431; xml: 171; sh: 22; perl: 16; makefile: 3
file content (25 lines) | stat: -rw-r--r-- 693 bytes parent folder | download | duplicates (2)
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
ext {
    scalaVersion = '2.12.4'
}

dependencies {
    compile project(':minidns-client')
    compile project(':minidns-iterative-resolver')
    compile project(':minidns-dnssec')
    compile project(':minidns-integration-test')
    compile project(':minidns-hla')
    compile "com.lihaoyi:ammonite_$scalaVersion:1.1.2"
    testCompile project(path: ":minidns-client", configuration: "testRuntime")
}

task printClasspath(dependsOn: assemble) {
	doLast {
		println sourceSets.main.runtimeClasspath.asPath
	}
}

animalsniffer {
	// Disable AnimalSniffer for minidns-repl.
	// Unfortunately I found no better way to disable it besided making the sourceSets set an empty set.
	sourceSets = []
}