为什么jasperreports-maven-plugin需要itext:itext:jar:4.2.0?

时间:2015-07-13 19:24:36

标签: maven jasper-reports itext maven-plugin dependency-management

从今天开始,我们不能再构建我们的jasper文件了。我们使用jasperreports-maven-plugin。

在maven 2.2.1中,这个配置如下:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>jasperreports-maven-plugin</artifactId>
    <version>1.0-beta-2</version>
    <executions>
      <execution>
        <goals>
          <goal>compile-reports</goal>
        </goals>
        <configuration>
          <sourceDirectory>${basedir}/src/main/resources/reports</sourceDirectory>
          <outputDirectory>>${project.build.directory}/classes/reports</outputDirectory>
        </configuration>
      </execution>
    </executions>
    <dependencies>
      <dependency>
        <groupId>net.sf.jasperreports</groupId>
        <artifactId>jasperreports</artifactId>
        <version>5.5.1</version>
        <scope>compile</scope>
      </dependency>
      <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>servlet-api</artifactId>
        <version>2.5</version>
        <scope>compile</scope>
      </dependency>
    </dependencies>
    <configuration>
      <sourceDirectory>C:\Windows\TEMP/src/main/resources/reports</sourceDirectory>
      <outputDirectory>C:\Windows\TEMP\target/classes/reports</outputDirectory>
    </configuration>
  </plugin>

但是,如上所述,从今天开始,我们遇到了这个构建错误:

...
Downloading: http://repo1.maven.org/maven2/itext/itext/4.2.0/itext-4.2.0.jar
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to resolve artifact.

Missing:
----------
1) itext:itext:jar:4.2.0

  Try downloading the file manually from the project website.

  Then, install it using the command:
  mvn install:install-file -DgroupId=itext -DartifactId=itext -Dversion=4.2.0 -Dpackaging=jar -Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file there:
  mvn deploy:deploy-file -DgroupId=itext -DartifactId=itext -Dversion=4.2.0 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

  Path to dependency:
    1) org.codehaus.mojo:jasperreports-maven-plugin:maven-plugin:1.0-beta-2
    2) jasperreports:jasperreports:jar:1.2.0
    3) itext:itext:jar:4.2.0

我认为另一个问题(Dependency error in jasper-reports from itext)与他有关。我尝试使用Meher的解决方案来使用maven 3.2.3。这似乎是一个解决方案,但我们无法升级(现在)到这个maven版本。所以我需要另一种解决方案来解决这个问题。有任何想法吗?我已经尝试排除依赖项并使用固定版本,但我还没有成功完成构建。我的意思是:

<!-- Compile jasper reports -->
<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>jasperreports-maven-plugin</artifactId>
    <version>1.0-beta-2</version>
    <configuration>
        <sourceDirectory>${basedir}/src/main/resources/reports</sourceDirectory>
        <outputDirectory>${project.build.directory}/classes/reports</outputDirectory>
    </configuration>

    <executions>
        <execution>
            <goals>
                <goal>compile-reports</goal>
            </goals>
            <phase>generate-sources</phase>
        </execution>
    </executions>

    <dependencies>
        <dependency> 
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jasperreports-maven-plugin</artifactId>
            <version>1.0-beta-2</version>
            <exclusions>
                <exclusion>
                    <groupId>net.sf.jasperreports</groupId>
                    <artifactId>jasperreports</artifactId>                              
                </exclusion>                            
            </exclusions>
        </dependency> 

        <dependency>
            <groupId>net.sf.jasperreports</groupId>
            <artifactId>jasperreports</artifactId>
            <version>5.5.1</version> 
            <exclusions>
                <exclusion>
                    <groupId>com.lowagie</groupId>
                    <artifactId>itext</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>com.lowagie</groupId>
            <artifactId>itext</artifactId>
            <version>2.1.7</version>
        </dependency>
    </dependencies>
</plugin>

为什么插件仍在搜索itext:itext:jar:4.2.0?有任何想法或建议可以解决这个问题吗?

谢谢!

3 个答案:

答案 0 :(得分:3)

背景:

iText Group NV是Maven Central上groupId com.lowagiecom.itextpdf的所有者。 iText Group NV于2009年7月发布了com.lowagie:itext版本 2.1.7 。iText Group NV的下一个版本是com.itextpdf:itextpdf版本 5.0.0 , 2009年12月。当前版本(截至2015年12月) 5.5.8

iText Group NV从未发布过版本 4.x.x

2011年的某个地方,一家名为InProTopia&#34;的公司被劫持了#34; com.lowagie并发布了版本号为 4.2.0 的iText分支。根据[Maven Central指南] [1],他们应该将其发布为com.inprotopia:itext,但他们并没有。后来他们发布了一个带有自己补丁的 4.2.1 。最近,iText Group NV取得了com.lowagie的所有权并发布了版本 4.2.2 ,并重定向到com.itextpdf:itextpdf版本 5.5.6 (当前版本为那个时候)。

可能的解决方案:

  1. 如果您需要com.lowagie iText,则需要在pom.xml中设置固定版本。最后一个正式版本是 2.1.7
  2. 如果您需要iText 4.x.x ,请与InProTopia联系。祝你好运,因为他们的网站已关闭,据我所知,该公司已不复存在。
  3. 如果您不介意使用哪个版本的iText,请使用iText Group NV发布的当前版iText,com.itextpdf:itextpdf 5.5.8 (截至2015年12月)。
  4. 使用最新版本的jasperreports。它明确依赖于iText 2.1.7.js,这是Jasper Reports的自定义iText版本。
  5. iText博客上的更多信息。 http://itextpdf.com/maven-update-problem-with-itext-4.2.2

    [1] https://maven.apache.org/guides/mini/guide-central-repository-upload.html

答案 1 :(得分:0)

我通过使用ant来构建我的jasper报告来解决我的问题。所以我跳过了这个插件。

我的蚂蚁任务看起来像这样:

OFFSET

答案 2 :(得分:0)

尝试添加此存储库:

<repository>
        <url>https://repository.liferay.com/nexus/content/groups/public/</url>
        <id>liferay</id>
        <name>Liferay</name>
    </repository>
祝你好运!