0

Drools を 6.5.0.Final から Drools 7.36.1.Final に移行すると、以下のように org.kie:kie-maven-plugin:7.36.0.Final 依存関係の問題を解決する際に問題に直面しています

[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[ERROR] Unresolveable build extension: Plugin org.kie:kie-maven-plugin:7.36.0.Final or one of its dependencies could not be resolved: The following artifacts could not be resolved: xmlpull:xmlpull:jar:1.2.0, xpp3:xpp3_min:jar:1.2.0: Could not find artifact xmlpull:xmlpull:jar:1.2.0

POM エントリ

  <plugin>
    <groupId>org.kie</groupId>
    <artifactId>kie-maven-plugin</artifactId>
    <version>7.36.1.Final</version>
     <extensions>true</extensions>         
 </plugin>
4

2 に答える 2

0

こんにちは、7.31 以降のバージョンで同じ問題が発生しました。彼らはkie-parent.pomの依存関係 を

<version.xmlpull>1.1.3.1</version.xmlpull>
<version.xmlunit>1.3</version.xmlunit>
<version.xpp3>1.1.4c</version.xpp3>

<version.xmlpull>1.2.0</version.xmlpull>
<version.xmlunit>1.3</version.xmlunit>
<version.xpp3>${version.xmlpull}</version.xpp3>

私は多くのトリックを試していますが、まだ問題を解決できません。1.2.0 https://repository.jboss.org/nexus/content/repositories/ea/にある ea バージョンです。

于 2020-06-17T09:03:14.537 に答える