-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
32 lines (27 loc) · 1012 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
// Copyright by Barry G. Becker, 2013 - 2017. Licensed under MIT License: http://www.opensource.org/licenses/MIT
buildscript {
repositories {
// retrieve the shared gradle build scripts from here
maven { url "https://oss.sonatype.org/content/repositories/snapshots/"}
maven { url "https://oss.sonatype.org/content/repositories/releases" }
}
dependencies {
classpath 'com.barrybecker4:bb4-gradle:1.8-SNAPSHOT'
}
}
description = 'Sound and speech synthesis library'
group = 'com.barrybecker4'
version = '1.8-SNAPSHOT'
ext {
archivesBaseName = 'bb4-sound'
mainClass = "com.barrybecker4.sound.midi.MidiSynth"
}
apply from: project.buildscript.classLoader.getResource('bb4.gradle').toURI()
dependencies {
implementation 'com.barrybecker4:bb4-common:1.8-SNAPSHOT'
}
test {
reports.junitXml.destination = file('build/test-results/test')
maxParallelForks = 1
}
apply from: project.buildscript.classLoader.getResource('bb4-publish.gradle').toURI()