Maven - не удалось выполнить цель org.apache.maven.plugins: maven-compiler-plugin: 3.7.0: compile Using java 10 - PullRequest
0 голосов
/ 16 сентября 2018

Я пытаюсь загрузить свой проект диска-бота в Heroku, используя Git bash. Мой проект - Java 10, и я использую Maven, но я получаю эту ошибку:

remote:        [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile (default-compile) on project bot_discord: Fatal error compiling: invalid flag: --release -> [Help 1]
remote:        [ERROR]
remote:        [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
remote:        [ERROR] Re-run Maven using the -X switch to enable full debug logging.
remote:        [ERROR]
remote:        [ERROR] For more information about the errors and possible solutions, please read the following articles:
remote:        [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
remote:
remote:  !     ERROR: Failed to build app with Maven
remote:        We're sorry this build is failing! If you can't find the issue in application code,
remote:        please submit a ticket so we can help: https://help.heroku.com/
remote:
remote:  !     Push rejected, failed to compile Java app.
remote:
remote:  !     Push failed

Я думаю, мне нужно добавить что-то в мой Pom.xml но я не понимаю, что добавить!my pom.xml:

<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>kino.bot</groupId>
  <artifactId>bot_discord</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>Bot Ryo</name>
  <description>Mon bot</description>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.7.0</version>
        <configuration>
          <release>10</release>
        </configuration>
      </plugin>
    </plugins>
  </build>


  <repositories>
    <repository>
        <id>jcenter</id>
        <name>jcenter-bintray</name>
        <url>http://jcenter.bintray.com</url>
    </repository>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
  </repositories>

  <dependencies>
    <dependency>
        <groupId>net.dv8tion</groupId>
        <artifactId>JDA</artifactId>
        <version>3.7.1_422</version>
    </dependency>
    <dependency>
        <groupId>com.mashape.unirest</groupId>
        <artifactId>unirest-java</artifactId>
        <version>1.4.9</version>
    </dependency>
  </dependencies>

</project>

что мне нужно добавить в мой pom.xml?

Ответы [ 4 ]

0 голосов
/ 15 января 2019

Есть и другой вариант, вместо добавления файла свойств в место репо.

Вы можете добавить этот код в POM.xml:

<properties>
    <java.version>1.8.0_171</java.version>
</properties>
0 голосов
/ 16 сентября 2018

Аргумент -release поддерживается только начиная с Java9 (https://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html). Убедитесь, что в вашей системе maven используется хотя бы Java9.

0 голосов
/ 16 сентября 2018

Убедитесь, что у вас есть system.properties файл в корневом каталоге вашего хранилища со следующим содержимым:

java.runtime.version=10

Для получения дополнительной информации см. Документацию Heroku о версиях Java

0 голосов
/ 16 сентября 2018

Попробуйте использовать версию 3.8.0 вместо 3.7.0. Также убедитесь, что ваш JAVA_HOME настроен на установку Java 8. Смотрите эту ссылку

...