You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Marc Schneider <ma...@gmail.com> on 2008/04/25 11:15:17 UTC

Problem with pdfbox-0.7.3.pom

Hello,

I don't know if this is the right place to talk about this but I think 
that this pom is wrong ;

http://maven.reucon.com/public/pdfbox/pdfbox/0.7.3/pdfbox-0.7.3.pom

You have :

<project>

	<modelVersion>4.0.0</modelVersion>
	<groupId>pdfbox</groupId>
	<artifactId>pdfbox</artifactId>
	<name>PDFBox - Java PDF Library</name>
	<version>0.7.3</version>
</project>

And in fact before you had (which is in my opinion correct) :

<?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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>pdfbox</groupId>
  <artifactId>pdfbox</artifactId>
  <version>0.7.3</version>

  <name>PDFBox - Java PDF Library</name>
  <!-- Keep on a single line, see http://jira.codehaus.org/browse/MJAR-39 -->
  <description>PDFBox is an open source Java PDF library for working with PDF documents.</description>

  <licenses>
    <license>
      <name>BSD</name>
      <url>http://www.pdfbox.org/license.html</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <url>http://www.pdfbox.org/</url>

  <mailingLists>
    <mailingList>
      <name>PDFBox Users mailing list</name>
      <subscribe>pdfbox-user-subscribe@lists.sourceforge.net</subscribe>
      <unsubscribe>pdfbox-user-unsubscribe@lists.sourceforge.net</unsubscribe>
      <post>pdfbox-user@lists.sourceforge.net</post>
    </mailingList>
  </mailingLists>

  <developers>
    <developer>
      <name>Ben Litchfield</name>
      <id>benlitchfield</id>
      <email>ben@benlitchfield.com</email>     
      <roles>
        <role>committer</role>
      </roles>
    </developer>
  </developers>

    <scm>
        <url>http://pdfbox.cvs.sourceforge.net/pdfbox/</url>
    </scm>

  <dependencies>
    <dependency>
        <groupId>org.fontbox</groupId>
        <artifactId>fontbox</artifactId>
        <version>0.1.0</version>
    </dependency>
    
    <dependency>
        <groupId>org.jempbox</groupId>
        <artifactId>jempbox</artifactId>
        <version>0.2.0</version>
    </dependency>
    
    <dependency>
        <groupId>bouncycastle</groupId>
        <artifactId>bcmail-jdk14</artifactId>
        <version>136</version>
    </dependency>
    
    <dependency>
        <groupId>bouncycastle</groupId>
        <artifactId>bcprov-jdk14</artifactId>
        <version>136</version>
    </dependency>
  </dependencies>
</project>



Does anybody know about this ?

Thanks,
Marc/


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Problem with pdfbox-0.7.3.pom

Posted by Tim Kettler <ti...@udo.edu>.
Hi,

Marc Schneider schrieb:
> Hello,
> 
> I don't know if this is the right place to talk about this 

Not really. You should contact the reucon guys directly, as it is their
repository.

> but I think that this pom is wrong ;

[...]

And this is one of the reasons one should think very carefully about
which repositories to use. Deployed artifacts in a repository should
change under no circumstances.

On top of that, the repository you point to isn't a valid remote repo at
all. It misses the manditory maven-metadata.* files. It seems this is
just a copied local repo.

Why don't you use central in the first place? Pdfbox [1] is available there.

> Does anybody know about this ?
>
> Thanks,
> Marc/
>

-Tim

[1] http://repo1.maven.org/maven2/pdfbox/pdfbox/0.7.3/



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org