Skip to content

Commit 2095ac3

Browse files
committed
Fix JTok dependency resolution
following JCenter proxy removal from Gradle Plugin Portal see https://blog.gradle.org/portal-jcenter-impact
1 parent 72f81bb commit 2095ac3

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Diff for: build.gradle

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
buildscript {
2+
repositories {
3+
exclusiveContent {
4+
forRepository {
5+
maven {
6+
name 'DFKI-MLT'
7+
url 'https://raw.githubusercontent.com/DFKI-MLT/Maven-Repository/main'
8+
}
9+
}
10+
filter {
11+
includeGroup 'de.dfki.lt.jtok'
12+
}
13+
}
14+
}
15+
}
16+
117
plugins {
218
id 'de.dfki.mary.voicebuilding-base' version '5.5-SNAPSHOT'
319
}

0 commit comments

Comments
 (0)