将机器人部署到 Heroku 的困难
Posted
技术标签:
【中文标题】将机器人部署到 Heroku 的困难【英文标题】:Difficulties deploying bot to Heroku 【发布时间】:2021-02-19 02:22:56 【问题描述】:我对此完全陌生,非常无知,需要帮助。
我已经做了一些涉及设置 pom.xml 文件和 Procfile 的事情,但是这是否有效以及文件层次结构是否正确对我来说也是一个谜......
无论如何,当我部署到 Heroku 时,这是我收到的错误消息:
[ERROR] Failed to execute goal on project TokenBot1.0: Could not resolve dependencies for project org.example:TokenBot1.0:jar:1.0-SNAPSHOT: The following artifacts could not be resolved: net.dv8tion:JDA:jar:4.2.0_214, com.jagrosh:jda-utilities:jar:3.0.4: Could not find artifact net.dv8tion:JDA:jar:4.2.0_214 in central (https://repo.maven.apache.org/maven2) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
! ERROR: Failed to build app with Maven
We're sorry this build is failing! If you can't find the issue in application code,
please submit a ticket so we can help: https://help.heroku.com/
! Push rejected, failed to compile Java app.
! Push failed
我也不太了解 maven 与 gradle,但我认为我的项目最初使用的是 gradle,然后我按照指南尝试使用 maven 进行设置,因为很多 Heroku 指南都想要 maven。
文件看起来像这样:
TokenBot 1.0
过程文件 build.gradle .git 源 pom.xml 主要 构建 库 .jar 文件过程文件
worker: java -jar target/TokenBot 1.0-1.0-SNAPSHOT.jar
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>TokenBot1.0</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals><goal>copy-dependencies</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>4.2.0_214</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.jagrosh</groupId>
<artifactId>jda-utilities</artifactId>
<version>3.0.4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
如果您还需要了解其他信息,请告诉我。
提前感谢任何可以提供帮助的人!
【问题讨论】:
github.com/DV8FromTheWorld/JDA#download 阅读自述文件? @Minn 这个自述文件如何帮助我在 heroku 上托管一个机器人? 问题是maven不是heroku @Minn 好的,你认为 Maven 有什么问题? 【参考方案1】:我使用 maven 而不是 gradle 重新制作了我的整个项目(只是挽救了代码),因为基本上我能找到的每个教程都使用了 maven。
接下来我确保我仍然可以在本地正常运行我的机器人(我必须对我的 pom.xml 文件做一些事情来实现这一点)
我发现与部署到 heroku(减去 github)的确切情况相匹配的唯一教程是这个俄语教程:https://www.youtube.com/watch?v=LRapMfUMe4s
在完全遵循本教程之后,我唯一缺少的就是创建一个 Procfile,我做到了。完成后,前往 heroku 并启用应该显示的 dyno。
所以基本上:
-
使用 maven 而不是 gradle 创建一个新的项目文件
确保它在本地运行良好(在 IntelliJ 中使用“运行”按钮并执行 .jar 文件)
按照上面的视频/旅程部署到 heroku
Procfile;确保在您的根文件夹中创建一个
【讨论】:
我不明白这如何回答您的问题。在您的问题中,您遇到了一个问题,即在 Central 上找不到一个 Maven 依赖项。这没有帮助。 tbh 不再是我的问题了以上是关于将机器人部署到 Heroku 的困难的主要内容,如果未能解决你的问题,请参考以下文章
使用 Windows 机器将 Django 部署到 Heroku(生产服务器而不是开发服务器)
将 Bot 部署到 Heroku 时如何解决 TypeError?