forked from SourceUtils/jspeex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (27 loc) · 821 Bytes
/
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
apply plugin: 'java'
apply plugin: 'maven'
group = 'org.xiph.speex'
version = '0.9.8-SNAPSHOT'
description = """\
JSpeex is a Java port of the Speex speech codec
(Open Source/Free Software patent-free audio compression format designed for speech).
It provides both the decoder and the encoder in pure Java, as well as a JavaSound SPI.
The current version of the JSpeex library is based on the code from Speex 1.0.5.
"""
sourceCompatibility = 1.5
targetCompatibility = 1.5
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.jetbrains', name: 'annotations', version: '13.0'
testCompile group: 'junit', name: 'junit', version: '3.8.1'
}
apply plugin: 'maven-publish'
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}