[marytts] Upgrade to 5.2.1 (#20717)

* Upgrade marytts packages from 5.2 to 5.2.1.
  5.2.1 is the first version published on Maven Central.
* Introduce handling for internal repository in parent pom.
* Exclude transitive dependency to log4j.

Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
This commit is contained in:
Holger Friedrich
2026-05-13 21:56:44 +02:00
committed by GitHub
parent 73cf48d41e
commit 76aea7c354
+50 -6
View File
@@ -48,6 +48,16 @@
<artifactId>jtok-core</artifactId>
<version>1.9.3</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>de.dfki.mary</groupId>
@@ -58,49 +68,61 @@
<dependency>
<groupId>de.dfki.mary</groupId>
<artifactId>marytts-common</artifactId>
<version>5.2</version>
<version>5.2.1</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>de.dfki.mary</groupId>
<artifactId>marytts-lang-de</artifactId>
<version>5.2</version>
<version>5.2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>de.dfki.mary</groupId>
<artifactId>marytts-lang-en</artifactId>
<version>5.2</version>
<version>5.2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>de.dfki.mary</groupId>
<artifactId>marytts-runtime</artifactId>
<version>5.2</version>
<version>5.2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>de.dfki.mary</groupId>
<artifactId>marytts-signalproc</artifactId>
<version>5.2</version>
<version>5.2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>de.dfki.mary</groupId>
<artifactId>voice-bits1-hsmm</artifactId>
<!-- not uploaded to central, take from our jfrog repo -->
<version>5.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>de.dfki.mary</groupId>
<artifactId>voice-bits3-hsmm</artifactId>
<!-- not uploaded to central, take from our jfrog repo -->
<version>5.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>de.dfki.mary</groupId>
<artifactId>voice-cmu-slt-hsmm</artifactId>
<version>5.2</version>
<version>5.2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
@@ -121,8 +143,30 @@
<version>1.5.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>marytts-dependencies</id>
<!-- Overrides upstream marytts POM which declares a broken
file://${project.basedir}/../lib/repo URL that fails
multi-module dependency resolution. Repo is empty; safe to block. -->
<url>https://repo.maven.apache.org/maven2</url>
</repository>
</repositories>
<build>
<pluginManagement>
<plugins>