Skip to content

Commit

Permalink
Merge pull request #39 from psibre/resolve-jtok-from-maven-central
Browse files Browse the repository at this point in the history
Resolve JTok from Maven Central
  • Loading branch information
psibre authored Jan 25, 2025
2 parents 179009a + d5b2e1d commit d9a04a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Gradle MaryTTS Component Plugin

### Changed

- Upgraded JTok to v1.9.4, resolving it from Maven Central
- [all changes since v0.3.2]

[v0.3.2] - 2024-02-16
Expand Down
16 changes: 5 additions & 11 deletions src/main/groovy/de/dfki/mary/ComponentPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,6 @@ class ComponentPlugin implements Plugin<Project> {

project.repositories {
mavenCentral()
exclusiveContent {
forRepository {
maven {
name 'DFKI-MLT'
url 'https://raw.githubusercontent.com/DFKI-MLT/Maven-Repository/main'
}
}
filter {
includeGroup 'de.dfki.lt.jtok'
}
}
}

project.sourceSets {
Expand All @@ -63,6 +52,11 @@ class ComponentPlugin implements Plugin<Project> {
}
testImplementation localGroovy()
testImplementation group: 'org.testng', name: 'testng', version: '7.5.1'
constraints {
implementation('de.dfki.lt.jtok:jtok-core:1.9.4') {
because 'transitive dependency v1.9.3 is not available in Maven Central'
}
}
}

project.tasks.register('generateServiceLoader', GenerateServiceLoader) {
Expand Down

0 comments on commit d9a04a9

Please sign in to comment.