Maven尝试将< packaing>pom< /package>pom作为jar文件下载,但无法找到

kmynzznz  于 2023-02-11  发布在  Maven
关注(0)|答案(4)|浏览(241)

我的maven 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>org.acb</groupId>
  <artifactId>adfafa</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <dependencies>
<dependency>
  <!-- https://mvnrepository.com/artifact/org.pentaho/pentaho-aggdesigner -->
<groupId>org.pentaho</groupId>
<artifactId>pentaho-aggdesigner</artifactId>
    <version>5.1.5-jhyde</version>
</dependency>

  </dependencies>
</project>

在pom.xml中,我只需要pentaho-aggdesigner,它是两个模块pentaho-aggdesigner-core.jar和pentaho-aggdesigner-algorithm.jar的父pom,我的远程存储库是:http://repo.spring.io/plugins-release
所以我认为maven会访问http://repo.spring.io/plugins-release/org/pentaho/pentaho-aggdesigner/5.1.5-jhyde/pentaho-aggdesigner-5.1.5-jhyde.pom下载父pom,然后根据pom下载两个子模块pentaho-aggdesigner-core.jar和pentaho-aggdesigner-algorithm.jar,pentaho-aggdesigner-5.1.5-jhyde.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">
  <modelVersion>4.0.0</modelVersion>

  <groupId>org.pentaho</groupId>
  <artifactId>pentaho-aggdesigner</artifactId>
  <packaging>pom</packaging>
  <version>5.1.5-jhyde</version>
  <name>Pentaho Aggregate Designer</name>
  <description>Designs aggregate tables for the Mondrian OLAP engine</description>
  <url>http://github.com/pentaho/mondrian</url>
  <inceptionYear>2006</inceptionYear>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <distributionManagement>
    <repository>
      <id>conjars</id>
      <name>Conjars</name>
      <url>http://conjars.org/repo</url>
      <layout>default</layout>
    </repository>
  </distributionManagement>


  <issueManagement />

  <scm>
    <connection>scm:git:git://github.com/julianhyde/pentaho-aggdesigner.git</connection>
    <developerConnection>scm:git:git@github.com:julianhyde/pentaho-aggdesigner.git</developerConnection>
    <url>http://github.com/julianhyde/pentaho-aggdesigner/tree/master</url>
    <tag>pentaho-aggdesigner-5.1.5-jhyde</tag>
  </scm>

  <modules>
    <module>pentaho-aggdesigner-algorithm</module>
    <module>pentaho-aggdesigner-core</module>
  </modules>

  <dependencyManagement>
    <!-- Dependency versions for all sub-modules.
         Sorted by groupId, artifactId. -->
    <dependencies>
      <dependency>
        <groupId>commons-lang</groupId>
        <artifactId>commons-lang</artifactId>
        <version>2.4</version>
      </dependency>
      <dependency>
        <groupId>commons-logging</groupId>
        <artifactId>commons-logging</artifactId>
        <version>1.1.3</version>
      </dependency>
      <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
        <version>1.3.1</version>
      </dependency>
      <dependency>
        <groupId>org.pentaho</groupId>
        <artifactId>pentaho-aggdesigner-algorithm</artifactId>
        <version>5.1.5-jhyde</version>
      </dependency>
      <dependency>
        <groupId>pentaho</groupId>
        <artifactId>mondrian</artifactId>
        <version>3.6.9</version>
      </dependency>
      <dependency>
        <groupId>dom4j</groupId>
        <artifactId>dom4j</artifactId>
        <version>1.6.1</version>
      </dependency>
      <dependency>
        <groupId>jaxen</groupId>
        <artifactId>jaxen</artifactId>
        <version>1.1-beta-6</version>
      </dependency>

      <!-- Test dependencies. -->
      <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.4</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.jmock</groupId>
        <artifactId>jmock-junit4</artifactId>
        <version>2.4.0</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.jmock</groupId>
        <artifactId>jmock-legacy</artifactId>
        <version>2.4.0</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.pentaho</groupId>
        <artifactId>pentaho-aggdesigner-algorithm</artifactId>
        <version>5.1.5-jhyde</version>
        <type>test-jar</type>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.hsqldb</groupId>
        <artifactId>hsqldb</artifactId>
        <version>2.3.1</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>5.1.17</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>pentaho</groupId>
        <artifactId>mondrian-data-foodmart-hsqldb</artifactId>
        <version>0.2</version>
      </dependency>
    </dependencies>
  </dependencyManagement>

  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.9.1</version>
        <configuration>
          <links>
            <link>http://docs.oracle.com/javase/7/docs/api/</link>
          </links>
        </configuration>
      </plugin>
    </plugins>
  </reporting>

  <build>
    <defaultGoal>package</defaultGoal>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <version>2.8</version>
        <executions>
          <execution>
            <id>properties</id>
            <goals>
              <goal>properties</goal>
            </goals>
            <phase>initialize</phase>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.2.1</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <phase>verify</phase>
            <goals>
              <goal>jar-no-fork</goal>
              <goal>test-jar-no-fork</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.2</version>
        <executions>
          <execution>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>properties-maven-plugin</artifactId>
        <version>1.0-alpha-2</version>
        <executions>
          <execution>
            <phase>initialize</phase>
            <goals>
              <goal>read-project-properties</goal>
            </goals>
            <configuration>
              <files>
                <file>build.properties</file>
              </files>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <!-- If we don't specify gitexe version, git doesn't
             commit during release process. -->
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <dependencies>
          <dependency>
            <groupId>org.apache.maven.scm</groupId>
            <artifactId>maven-scm-provider-gitexe</artifactId>
            <version>1.9.1</version>
          </dependency>
        </dependencies>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.17</version>
      </plugin>
    </plugins>
  </build>
</project>

你可以看到,pom清楚地表明我不是一个jar pom,而是一个包pom,但是maven仍然认为这是一个jar pom,并试图从远程repo下载pentaho-aggdesigner.jar,当然,jar文件不存在,并抛出以下错误:

[ERROR] Failed to execute goal on project adfafa: Could not resolve dependencies for project org.acb:adfafa:jar:0.0.1-SNAPSHOT: Could not find artifact org.pentaho:pentaho-aggdesigner:jar:5.1.5-jhyde in springmaven (http://repo.spring.io/plugins-release/) -> [Help 1]
    org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal on project adfafa: 
Could not resolve dependencies for project org.acb:adfafa:jar:0.0.1-SNAPSHOT: Could not find artifact org.pentaho:pentaho-aggdesigner:jar:5.1.5-jhyde in springmaven (http://repo.spring.io/plugins-release/)
xj3cbfub

xj3cbfub1#

我有同样的问题pentaho-aggdesigner:pom:5.1.5-jhyde,这个网站解决了我的问题
https://www.programmersought.com/article/76106349302/
基本上,在maven settings.xml中使用阿里云作为镜像。对于这种情况,不要使用repo.spring.io作为镜像,因为它需要登录,并且会出现“验证”错误。

rur96b6h

rur96b6h2#

不,maven不是这样工作的。另请参见How to use POMs as a dependency in Maven?
父模块只是一个合并子模块配置的技巧,它不会自动引入传递依赖关系。
因此,您需要指定确切的jar依赖项。可能类似于:

<dependency>
    <groupId>org.pentaho</groupId>
    <artifactId>pentaho-aggdesigner-algorithm</artifactId>
    <version>5.1.5-jhyde</version>
</dependency>
<dependency>
    <groupId>org.pentaho</groupId>
    <artifactId>pentaho-aggdesigner-core</artifactId>
    <version>5.1.5-jhyde</version>
</dependency>

有一些pom可以像这样使用,只要在依赖项中包含'pom'类型:

<dependency>
  <groupId>xxx.yyy</groupId>
  <artifactId>pentaho-all</artifactId>
  <type>pom</type>
  <version>XXXX</version>
</dependency>

在本例中,pentaho-all是一个pom,它包含一系列直接依赖项,然后作为传递依赖项导入,但您找到的聚合器pom没有直接依赖项,只有模块和依赖项管理,因此无法正常工作。

8tntrjer

8tntrjer3#

向pom.xml添加以下依赖项将有所帮助

<!-- https://mvnrepository.com/artifact/org.pentaho/pentaho-aggdesigner-algorithm -->
<dependency>
    <groupId>org.pentaho</groupId>
    <artifactId>pentaho-aggdesigner-algorithm</artifactId>
    <version>5.1.5-jhyde</version>
    <scope>test</scope>
</dependency>
j0pj023g

j0pj023g4#

只需从任何可用的存储库下载文件并存储在适当的文件夹中,例如:
~/.m2/repository/org/pentaho/pentaho-aggdesigner-algorithm/5.1.5-jhyde/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar

相关问题