Ognjen Blagojevic-5 wrote:
> 
> On 23.7.2010 12:19, Simon Pepping wrote:
> We could install 1.0 manually to local repo, but it would be much easier 
> to have it in Maven Central.
> 

I have added fop 1.0 to our local maven repository.
Because of the fact that there is no pom.xml I have written one,
is the following correct, especially the dependencies?

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.apache.xmlgraphics</groupId>
  <artifactId>fop</artifactId>
  <version>1.0</version>
  <url>http://xmlgraphics.apache.org/fop/</url>
  <description>

   Apache FOP (Formatting Objects Processor) is the world's first print
formatter driven by XSL formatting objects (XSL-FO)
   and the world's first output independent formatter.

   It is a Java application that reads a formatting object (FO) tree and
renders the resulting pages to a specified output.
   Output formats currently supported include PDF, PCL, PS, AFP, TIFF, PNG,
SVG, XML (area tree representation), Print, AWT and TXT.
   The primary output target is PDF.
  </description>
  <inceptionYear>2010</inceptionYear>
  <mailingLists>
        <mailingList>
          <name>FOP Users List</name>
          <subscribe>fop-users-subscr...@xmlgraphics.apache.org</subscribe>
          
<unsubscribe>fop-users-unsubscr...@xmlgraphics.apache.org</unsubscribe>

         
<archive>http://mail-archives.apache.org/mod_mbox/xmlgraphics-fop-users/</archive>
        </mailingList>
        <mailingList>
          <name>FOP Developer List</name>
          <subscribe>fop-dev-subscr...@xmlgraphics.apache.org</subscribe>
          <unsubscribe>fop-dev-unsubscr...@xmlgraphics.apache.org</unsubscribe>
         
<archive>http://mail-archives.apache.org/mod_mbox/xmlgraphics-fop-dev/</archive>

         </mailingList>
        <mailingList>
          <name>FOP Commit List</name>
          <subscribe>fop-commits-subscr...@xmlgraphics.apache.org</subscribe>
          
<unsubscribe>fop-commits-unsubscr...@xmlgraphics.apache.org</unsubscribe>
         
<archive>http://mail-archives.apache.org/mod_mbox/xmlgraphics-fop-commits/</archive>
        </mailingList>

        </mailingLists>
        <licenses>
                <license>
                <name>The Apache Software License, Version 2.0</name>
                <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
                <distribution>repo</distribution>
                </license>

        </licenses>
  <scm>
  
<connection>scm:svn:http://svn.apache.org/repos/asf/xmlgraphics/fop/trunk</connection>
  
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk</developerConnection>
  
<url>http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/?root=Apache-SVN</url>
  </scm>
  <organization>

   <name>Apache Software Foundation</name>
   <url>http://www.apache.org/</url>
  </organization>

  <dependencies>
        <!-- XML Graphics -->
        <dependency>
          <groupId>org.apache.xmlgraphics</groupId>

          <artifactId>xmlgraphics-commons</artifactId>
          <version>1.4</version>
        </dependency>

        <dependency>
          <groupId>org.apache.xmlgraphics</groupId>
          <artifactId>batik-svg-dom</artifactId>

          <version>1.7</version>
        </dependency>

        <dependency>
          <groupId>org.apache.xmlgraphics</groupId>
          <artifactId>batik-bridge</artifactId>
          <version>1.7</version>

        </dependency>

        <dependency>
          <groupId>org.apache.xmlgraphics</groupId>
          <artifactId>batik-awt-util</artifactId>
          <version>1.7</version>
        </dependency>

        <dependency>
          <groupId>org.apache.xmlgraphics</groupId>
          <artifactId>batik-gvt</artifactId>
          <version>1.7</version>
        </dependency>

        <dependency>
          <groupId>org.apache.xmlgraphics</groupId>

          <artifactId>batik-transcoder</artifactId>
          <version>1.7</version>
          <exclusions>
                <exclusion>
                  <groupId>org.apache.xmlgraphics</groupId>
                  <artifactId>fop</artifactId>
                </exclusion>

          </exclusions>
        </dependency>

        <dependency>
          <groupId>org.apache.xmlgraphics</groupId>
          <artifactId>batik-extension</artifactId>
          <version>1.7</version>
        </dependency>

        <dependency>
          <groupId>org.apache.xmlgraphics</groupId>
          <artifactId>batik-ext</artifactId>
          <version>1.7</version>
        </dependency>

        <!-- other dependencies -->

        <dependency>
          <groupId>commons-logging</groupId>
          <artifactId>commons-logging</artifactId>
          <version>1.0.4</version>
        </dependency>

        <dependency>
          <groupId>commons-io</groupId>

          <artifactId>commons-io</artifactId>
          <version>1.3.1</version>
        </dependency>

        <dependency>
          <groupId>org.apache.avalon.framework</groupId>
          <artifactId>avalon-framework-api</artifactId>

          <version>4.3.1</version>
        </dependency>

        <dependency>
          <groupId>javax.servlet</groupId>
          <artifactId>servlet-api</artifactId>
          <version>2.2</version>

          <scope>provided</scope>
        </dependency>

        <dependency>
          <groupId>xalan</groupId>
          <artifactId>xalan</artifactId>
          <version>2.7.0</version>

          <scope>provided</scope>
        </dependency>

  </dependencies>
</project>


-- 
View this message in context: 
http://old.nabble.com/The-Apache-Software-Foundation-Announces-Apache-FOP-Version-1.0-tp29228778p29449221.html
Sent from the FOP - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org
For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org

Reply via email to