1 Star 0 Fork 22

allen-xiang/chatgpt-plus-java

forked from RockYang/chatgpt-plus-java 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 3.10 KB
一键复制 编辑 原始数据 按行查看 历史
RockYang 提交于 2023-11-20 15:37 . feat: user login funciton is ready
<?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>
<artifactId>chatgpt-plus</artifactId>
<groupId>com.chatgpt</groupId>
<version>1.0.0</version>
<name>${project.artifactId}</name>
<packaging>pom</packaging>
<description>ChatGPT plus Java API</description>
<modules>
<module>chatgpt-plus-base</module>
<module>chatgpt-plus-api</module>
</modules>
<properties>
<java.version>1.8</java.version>
<skip.test>true</skip.test>
</properties>
<repositories>
<repository>
<id>AliYun-maven</id>
<url>https://maven.aliyun.com/nexus/content/groups/public</url>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>2.0.23</version>
</dependency>
<!-- google 的基础工具包 -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.0-android</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.14</version>
</dependency>
<!--日志工具-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.19.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.19.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<!-- setting compiler version and file encoding -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<!-- skip the unit test -->
<skip>${skip.test}</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/10careers/chatgpt-plus-java.git
[email protected]:10careers/chatgpt-plus-java.git
10careers
chatgpt-plus-java
chatgpt-plus-java
main

搜索帮助