web-dev-qa-db-ja.com

Maven-目標org.Apache.maven.plugins:maven-compiler-plugin:3.7.0:compileの実行に失敗しましたJava 10を使用しています

私のディスコードボットプロジェクトをGit bashを使用してHerokuにアップロードしようとしています。プロジェクトは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に何かを追加する必要があると思いますが、何を追加すべきか理解できません!私の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に何を追加する必要がありますか?

3
Crøss Marian

system.propertiesリポジトリのルートディレクトリにある次の内容のファイル:

Java.runtime.version=10

詳細は HerokuのドキュメントJavaバージョン を参照)

3
codefinger

-release引数は、Java9以降でのみサポートされます( https://maven.Apache.org/plugins/maven-compiler-plugin/compile-mojo.html )。 Mavenインストールが少なくともJava9を使用していることを確認してください。

2
user10367961

Pom.xmlから<release>10</release>を削除し、コンテンツsystem.propertiesを含むリソースにJava.runtime.version=10を追加します。 jdk 10で動作するはずです。または、必要に応じてJDKを変更できます。

0
Abhishek

3.7.0の代わりにバージョン3.8.0を使用してみてください。また、Java_HOMEがJava 8インストール済み環境に設定されていることを確認してください。 このリンク を参照してください。

0
tom

プロパティファイルをリポジトリの場所に追加する代わりに、別のオプションがあります。

このコードをPOM.xmlに追加できます。

<properties>
    <Java.version>1.8.0_171</Java.version>
</properties>
0
HARSH KHATRI