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 (20 lines) | stat: -rw-r--r-- 479 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
apply plugin: 'ru.vyarus.animalsniffer'

ext {
	androidBootClasspath = getAndroidRuntimeJar(23)
}

dependencies {
    compile project(':minidns-client')
    testCompile project(path: ":minidns-client", configuration: "testRuntime")

	// Add the Android jar to the Eclipse .classpath.
	compile files(androidBootClasspath)

	// For AnimalSniffer
	signature "net.sf.androidscents.signature:android-api-level-23:6.0_r3@signature"
}

animalsniffer {
	sourceSets = [sourceSets.main]
}