36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.github.gtache.autosubtitle</groupId>
|
|
<artifactId>autosubtitle</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>autosubtitle-deepl</artifactId>
|
|
|
|
<properties>
|
|
<deepl.version>1.5.0</deepl.version>
|
|
<lingua.version>1.2.2</lingua.version>
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.github.gtache.autosubtitle</groupId>
|
|
<artifactId>autosubtitle-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.deepl.api</groupId>
|
|
<artifactId>deepl-java</artifactId>
|
|
<version>${deepl.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.pemistahl</groupId>
|
|
<artifactId>lingua</artifactId>
|
|
<version>${lingua.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |