mirror of
https://github.com/Andrewcpu/elevenlabs-api.git
synced 2026-01-14 06:57:57 -05:00
87 lines
3.0 KiB
XML
87 lines
3.0 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>
|
|
|
|
<name>Unofficial Java ElevenLabs Voice API</name>
|
|
<description>An API level interaction between Java and the ElevenLabs Voice Generation Web API.</description>
|
|
<developers>
|
|
<developer>
|
|
<id>Andrewcpu</id>
|
|
<name>Andrew Stein</name>
|
|
<roles>
|
|
<role>Project Lead</role>
|
|
</roles>
|
|
<timezone>UTC-5</timezone>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://github.com/AndrewCPU/elevenlabs-api.git</connection>
|
|
<developerConnection>scm:git:git@github.com:AndrewCPU/elevenlabs-api.git</developerConnection>
|
|
<url>https://github.com/AndrewCPU/elevenlabs-api</url>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>github</id>
|
|
<name>GitHub AndrewCPU Apache Maven Packages</name>
|
|
<url>https://maven.pkg.github.com/AndrewCPU/elevenlabs-api</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<groupId>net.andrewcpu</groupId>
|
|
<artifactId>elevenlabs-api</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GNU General Public License v3.0</name>
|
|
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
<artifactId>json-simple</artifactId>
|
|
<version>1.1.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>elevenlabs-api-${version}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>3.3.0</version>
|
|
<configuration>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
<finalName>elevenlabs-api-${version}-full</finalName>
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>make-assembly</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|