• Не понимаю почему не получается за деплоить бота?

    @lif527 Автор вопроса
    Bavashi, Он есть,но все равно не работает
  • Как исправить эту ошибку?

    @lif527 Автор вопроса
    Bavashi, ошибка:

    2020-08-28T14:33:31.027889+00:00 app[web.1]: load native agent library by full pathname
    2020-08-28T14:33:31.027889+00:00 app[web.1]: -javaagent:[=]
    2020-08-28T14:33:31.027889+00:00 app[web.1]: load Java programming language agent, see java.lang.instrument
    2020-08-28T14:33:31.027890+00:00 app[web.1]: -splash:
    2020-08-28T14:33:31.027890+00:00 app[web.1]: show splash screen with specified image
    2020-08-28T14:33:31.027895+00:00 app[web.1]: See www.oracle.com/technetwork/java/javase/documentati... for more details.
    2020-08-28T14:33:31.089031+00:00 heroku[web.1]: Process exited with status 1
    2020-08-28T14:33:31.128004+00:00 heroku[web.1]: State changed from starting to crashed
    2020-08-28T14:33:32.565353+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=tg-bot-campot.herokuapp.com request_id=ff7a4259-aaf9-4fe5-bdc2-41eff7ef5d44 fwd="213.87.148.175" dyno= connect= service= status=503 bytes= protocol=https
    2020-08-28T14:33:33.073524+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=tg-bot-campot.herokuapp.com request_id=99610796-8c97-4081-9815-cd24049147c8 fwd="213.87.148.175" dyno= connect= service= status=503 bytes= protocol=https
  • Как исправить эту ошибку?

    @lif527 Автор вопроса
    Bavashi,
    <?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>telebot</artifactId>
        <version>1.0-SNAPSHOT</version>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <configuration>
                        <source>7</source>
                        <target>7</target>
                    </configuration>
                </plugin>
            </plugins>
        </build>
        <dependencies>
            <dependency>
                <groupId>org.telegram</groupId>
                <artifactId>telegrambots</artifactId>
                <version>4.9.1</version>
            </dependency>
    
    
            <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-nop</artifactId>
                <version>1.7.13</version>
            </dependency>
        </dependencies>
    
    </project>