7d7f2eed87
Moved all the existing service code into the `service` submodule. Stubbed out project and GUI frame for the uploader. Idea is to have a GUI that infers all the correct meta-data from media tag values and creates service, songs, and performance records appropriately based on the tagged mp3/ogg files of the performances.
25 lines
446 B
Groovy
25 lines
446 B
Groovy
plugins { id 'com.palantir.git-version' version '0.5.2' }
|
|
|
|
allprojects {
|
|
group = "com.jdbernard"
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
jcenter()
|
|
maven { url 'https://mvn.jdb-labs.com/repo' }
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
jcenter()
|
|
maven { url "https://mvn.jdb-labs.com/repo" }
|
|
}
|
|
|
|
apply plugin: 'com.palantir.git-version'
|
|
version = gitVersion()
|
|
}
|