电报java bot部署有问题

cuxqih21  于 2021-06-30  发布在  Java
关注(0)|答案(0)|浏览(252)

我的机器人在intellij ide中工作得很好,但当我部署到heroku时它就不工作了。我想问题出在舱单上。我从未部署过某些东西,所以我不理解manifest或pom.xml。请帮帮我。
pom.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>
<groupId>org.example</groupId>
<artifactId>PhotoBot</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
</properties>

主要类别

public class Main {

    public static void main(String[] args) {
        ApiContextInitializer.init();
        TelegramBotsApi botsApi = new TelegramBotsApi();
        try{
            botsApi.registerBot(new PhotoBot());
        }catch (TelegramApiException e){
            e.printStackTrace();
        }
    }
 }

主要的
图片
pom.xml文件

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题