openai-java
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>xyz.felh</groupId> <artifactId>openai-java</artifactId> <version>3.7.20240130</version> </dependency>
<?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> <groupId>xyz.felh</groupId> <artifactId>openai-java</artifactId> <version>3.7.20240130</version> <packaging>pom</packaging> <name>ChatGPT of OpenAI API for Java</name> <description>ChatGPT of OpenAI API for Java</description> <url>https://github.com/forestwanglin/openai-java</url> <scm> <connection>https://github.com/forestwanglin/openai-java.git</connection> <url>https://github.com/forestwanglin/openai-java.git</url> </scm> <developers> <developer> <name>Forest Wang</name> <id>forestwanglin</id> <email>forest_wanglin@163.com</email> <timezone>8</timezone> <organization>felh.xyz</organization> <roles> <role>Java Developer</role> </roles> </developer> </developers> <licenses> <license> <name>MIT License</name> <url>https://github.com/forestwanglin/openai-java/blob/main/LICENSE</url> </license> </licenses> <modules> <module>core</module> <module>jtokkit</module> <module>service</module> </modules> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <maven.compiler.release>17</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jackson.version>2.16.1</jackson.version> <fastjson2.version>2.0.45</fastjson2.version> <lombok.version>1.18.30</lombok.version> <slf4j.version>2.0.11</slf4j.version> <junit.jupiter.version>5.10.1</junit.jupiter.version> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <archive> <manifestEntries> <Built-By>dothetrick</Built-By> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <configuration> <additionalJOption>-Xdoclint:none</additionalJOption> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>