11 lines
312 B
Groovy
11 lines
312 B
Groovy
include ':app'
|
|
|
|
def apiclientLocation = '../jellyfin-apiclient-java'
|
|
|
|
if (new File(apiclientLocation).exists()) {
|
|
includeBuild(apiclientLocation) {
|
|
dependencySubstitution {
|
|
substitute module('com.github.jellyfin.jellyfin-apiclient-java:library') with project(':library')
|
|
}
|
|
}
|
|
} |