Проект Maven не удалось выполнить "Maven-Thrift-плагин" - PullRequest
0 голосов
/ 17 сентября 2018

У меня "brew install thrift" на моем mac (0.11.0) и в pom.xml:

<dependencies>
    <!-- https://mvnrepository.com/artifact/org.apache.thrift/libthrift -->
    <dependency>
        <groupId>org.apache.thrift</groupId>
        <artifactId>libthrift</artifactId>
        <version>0.11.0</version>
    </dependency>
    <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-api</artifactId>
        <version>1.7.7</version>
    </dependency>
</dependencies>

<build>
  <plugins>
      <plugin>
          <groupId>org.apache.thrift.tools</groupId>
          <artifactId>maven-thrift-plugin</artifactId>
          <version>0.1.11</version>
          <configuration>
              <thriftExecutable>/usr/local/bin/thrift</thriftExecutable>
              <thriftSourceRoot>src/main/java/thrift</thriftSourceRoot>
              <outputDirectory>src/main/java/gen-java</outputDirectory>
          </configuration>
          <executions>
              <execution>
                  <id>thrift-sources</id>
                  <phase>generate-sources</phase>
                  <goals>
                      <goal>compile</goal>
                  </goals>
              </execution>
          </executions>
      </plugin>
  </plugins>
</build>
<repositories>
    <repository>
        <id>Maven Central Repository</id>
        <name>Maven Central Repository</name>
        <url>http://central.maven.org/maven2/</url>
    </repository>
</repositories>

Затем пакет mvn.Я полагаю, mvn должен автоматически загрузить плагин, который я указал в pom.xml для "maven-thrift-plugin: jar", но я получил:

[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building java_local 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-thrift-plugin:0.1.11:compile (thrift-sources) @ java_local ---
[ERROR] thrift failed output:

[ERROR] thrift failed error: [FAILURE:generation:1] Error: unknown option java:hashcode

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.405 s
[INFO] Finished at: 2018-09-17T15:48:09+08:00
[INFO] Final Memory: 9M/309M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.thrift.tools:maven-thrift-plugin:0.1.11:compile (thrift-sources) on project java_local: thrift did not exit cleanly. Review output for more information. -> [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/MojoFailureException

Как это исправить?Спасибо!

Ответы [ 3 ]

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

<version>0.11.0</version> является допустимой версией для зависимости, но не для плагина.

Измените версию плагина на <version>0.1.11</version>.

Затем запустите mvn clean install.

Тогда ваша mvn package команда должна работать.

0 голосов
/ 12 июня 2019

из версии плагина 0.1.10 добавить конфигурацию <generator>java</generator> это исправить проблему

      <plugin>
                    <groupId>org.apache.thrift.tools</groupId>
                    <artifactId>maven-thrift-plugin</artifactId>
                    <version>0.1.11</version>
                    <configuration>
    <thriftExecutable>E:\path\to\thrift\thrift-0.12.0.exe</thriftExecutable>
<thriftSourceRoot>${basedir}/src/main/thrift</thriftSourceRoot>
                        <generator>java</generator>
                    </configuration>
                    <executions>
                        <execution>
                            <id>thrift-sources</id>
                            <phase>generate-sources</phase>
                            <goals>
                                <goal>compile</goal>
                            </goals>
                        </execution>
                        <execution>
                            <id>thrift-test-sources</id>
                            <phase>generate-test-sources</phase>
                            <goals>
                                <goal>testCompile</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
0 голосов
/ 17 сентября 2018

Попробуйте добавить центральный репозиторий maven в settings.xml:

<repositories>
    <repository>
        <id>Maven Central Repository</id>
        <name>Maven Central Repository</name>
        <url>http://central.maven.org/maven2/</url>
    </repository>
</repositories>

Вы также можете сделать это для конкретного проекта, отредактировав POM:

<?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">
        ...

    <dependencies>
        ...
    </dependencies>

    <repositories>
        <repository>
            <id>Maven Central Repository</id>
            <name>Maven Central Repository</name>
            <url>http://central.maven.org/maven2/</url>
        </repository>
    </repositories>
</project>
...