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>[EMAIL PROTECTED]</subscribe>
     <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
     <post>[EMAIL PROTECTED]</post>
   </mailingList>
 </mailingLists>

 <developers>
   <developer>
     <name>Ben Litchfield</name>
     <id>benlitchfield</id>
<email>[EMAIL PROTECTED]</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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to