-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (28 loc) · 1002 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
36
plugins {
id 'java'
}
group = 'io.github.jseproject'
version = '1.1.0'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation 'io.github.jseproject:jse-api:1.1.0'
implementation 'io.github.jseproject:jse-spi-flac:1.1.0'
implementation 'io.github.jseproject:jse-spi-opus:1.1.0'
implementation 'io.github.jseproject:jse-spi-vorbis:1.1.0'
implementation 'io.github.jseproject:jse-spi-speex:1.1.0'
implementation 'io.github.jseproject:jse-spi-mp3:1.1.0'
implementation 'io.github.jseproject:jse-spi-aac:1.1.0'
implementation 'io.github.jseproject:jse-spi-ape:1.1.0'
implementation 'io.github.jseproject:jse-spi-wavpack:1.1.0'
}
test {
useJUnitPlatform()
}