Changeset 1671 for trunk/docx4j


Ignore:
Timestamp:
10/01/11 09:55:43 (8 months ago)
Author:
jharrop
Message:

All dependencies now in Maven Central.

Location:
trunk/docx4j
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/docx4j/build.xml

    r1638 r1671  
    2525        <pathelement location="${m2Repository}/org/apache/avalon/framework/avalon-framework-impl/4.3.1/avalon-framework-impl-4.3.1.jar"/> 
    2626        <!-- Xalan 2.7.1 and dependencies: see further below --> 
    27         <pathelement location="${m2Repository}/net/arnx/wmf2svg/0.8.3/wmf2svg-0.8.3.jar"/> 
    28         <pathelement location="${m2Repository}/org/apache/poi/hwpf/3.4.0/hwpf-3.4.0.jar"/> 
    29         <pathelement location="${m2Repository}/com/sun/xml/jaxb-NamespacePrefixMapper-interfaces/2.0.0/jaxb-NamespacePrefixMapper-interfaces-2.0.0.jar"/>     
     27        <pathelement location="${m2Repository}/net/arnx/wmf2svg/0.9.0/wmf2svg-0.9.0.jar"/> 
     28        <pathelement location="${m2Repository}/org/apache/poi/poi-scratchpad/3.8-beta4/poi-scratchpad-3.8-beta4.jar"/> 
     29        <pathelement location="${m2Repository}/org/apache/poi/poi/3.8-beta4/poi-3.8-beta4.jar"/> 
     30        <pathelement location="${m2Repository}/com/googlecode/jaxb-namespaceprefixmapper-interfaces/JAXBNamespacePrefixMapper/2.2.4/JAXBNamespacePrefixMapper-2.2.4.jar"/>     
    3031 
    3132        <pathelement location="${m2Repository}/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar"/>     
     
    171172                        </path> 
    172173                </copy>          
    173          <delete file="${dist}/jaxb-NamespacePrefixMapper-interfaces-2.0.0.jar" />                       
     174         <delete file="${dist}/JAXBNamespacePrefixMapper-2.2.4.jar" />                   
    174175    </target>    
    175176 
  • trunk/docx4j/pom.xml

    r1668 r1671  
    442442--> 
    443443                 
     444<dependency> 
     445    <groupId>net.arnx</groupId> 
     446    <artifactId>wmf2svg</artifactId> 
     447    <version>0.9.0</version> 
     448</dependency> 
     449 
     450                <dependency> 
     451                        <groupId>org.apache.poi</groupId> 
     452                        <artifactId>poi-scratchpad</artifactId> 
     453                        <version>3.8-beta4</version> 
     454                </dependency> 
     455 
     456                <!-- Ensure both the Java 6 and RI interfaces are present, 
     457                     even if the user has just one. 
     458                     NB: this (or an added source location containing them) is 
     459                     necessary (at least for Maven 2.2.1) since without this, 
     460                     Maven doesn't find the Java 6 copy in rt.jar -->   
     461                <dependency> 
     462                    <groupId>com.googlecode.jaxb-namespaceprefixmapper-interfaces</groupId> 
     463                    <artifactId>JAXBNamespacePrefixMapper</artifactId> 
     464                    <version>2.2.4</version> 
     465                        <!-- http://dev.plutext.org/forums/docx-java-f6/dependency-management-improvements-t739.html -->         
     466                        <scope>provided</scope>                  
     467                </dependency>  
     468                 
     469                <dependency> 
     470                <groupId>org.antlr</groupId> 
     471                <artifactId>antlr-runtime</artifactId> 
     472                <version>3.3</version> 
     473                </dependency> 
     474                <dependency> 
     475                    <groupId>org.antlr</groupId> 
     476                    <artifactId>stringtemplate</artifactId> 
     477                    <version>3.2.1</version> 
     478                </dependency> 
    444479 
    445480                <dependency> 
     
    459494                --> 
    460495  
    461                 <!-- svn:http://dev.plutext.org/svn/docx4j/trunk/docx4j/m2  
    462                          
    463                         (stuff not available in public repositories)  
    464                          
    465                         mvn deploy:deploy-file -f wagon-svn-pom.xml -Dfile=lib/xalan-2.7.0-patched-6396599-stripped.jar -DgroupId=xalan -DartifactId=xalan-patched -Dversion=2.7.0 -Dpackaging=jar -DrepositoryId=docx4j -Durl=svn:http://dev.plutext.org/svn/docx4j/trunk/docx4j/m2 
    466                          
    467                          mvn deploy:deploy-file -f wagon-svn-pom.xml -Dfile=../fop/tmp/fop-patched.jar -DgroupId=docx4j -DartifactId=fop-patched -Dversion=0.95.756436 -Dpackaging=jar -DrepositoryId=docx4j -Durl=svn:http://dev.plutext.org/svn/docx4j/trunk/docx4j/m2 
    468                           
    469                         mvn deploy:deploy-file -f wagon-svn-pom.xml -Dfile=dist/docx4j.jar -DpomFile=pom.xml  -Dpackaging=jar -DrepositoryId=docx4j -Durl=svn:http://dev.plutext.org/svn/docx4j/trunk/docx4j/m2 
    470                          
    471                         mvn deploy:deploy-file -f wagon-svn-pom.xml -Dfile=JAXB-NamespacePrefixMapperInterfaces.jar  -DgroupId=com.sun.xml -DartifactId=jaxb-NamespacePrefixMapper-interfaces -Dversion=2.0.0 -Dpackaging=jar -DrepositoryId=docx4j -Durl=svn:http://dev.plutext.org/svn/docx4j/trunk/docx4j/m2 
    472                                                   
    473                 --> 
    474                  
    475  
    476                 <dependency> 
    477                         <groupId>net.arnx</groupId> 
    478                         <artifactId>wmf2svg</artifactId> 
    479                         <version>0.8.3</version> 
    480                 </dependency> 
    481  
    482                 <dependency> 
    483                         <groupId>org.apache.poi</groupId> 
    484                         <artifactId>poi-scratchpad</artifactId> 
    485                         <version>3.8-beta4</version> 
    486                 </dependency> 
    487496                 
    488497<!--    Uncomment for the PDF conversion via HTML or iText, which 
     
    531540 --> 
    532541 
    533 <!-- As from 2010 09 17 source is included (see src/main/java/org/jvnet..) 
    534          so this is no longer required. 
    535             
    536                 <dependency> 
    537                         <groupId>org.jvnet.jaxb2_commons.ppp</groupId> 
    538                         <artifactId>parent-pointer-plugin</artifactId> 
    539                         <version>1.0</version> 
    540                 </dependency> 
    541  --> 
    542     
    543                 <!-- end of svn:http://dev.plutext.org/svn/docx4j/trunk/docx4j/m2 --> 
    544  
    545                 <!-- https://webdavclient4j.svn.sourceforge.net/svnroot/webdavclient4j/trunk/m2 
    546  
    547                         (stuff not available in public repositories)                                  
    548   --> 
     542 
    549543  
    550544                <!-- if you want to use the vfs stuff in docx4j-extras, you'll need commons-vfs 
     
    577571                --> 
    578572                 
    579                 <!-- Ensure both the Java 6 and RI interfaces are present, 
    580                      even if the user has just one. 
    581                      NB: this (or an added source location containing them) is 
    582                      necessary (at least for Maven 2.2.1) since without this, 
    583                      Maven doesn't find the Java 6 copy in rt.jar -->   
    584                 <dependency> 
    585                         <groupId>com.sun.xml</groupId> 
    586                         <artifactId>jaxb-NamespacePrefixMapper-interfaces</artifactId> 
    587                         <version>2.0.0</version> 
    588                         <!-- http://dev.plutext.org/forums/docx-java-f6/dependency-management-improvements-t739.html -->         
    589                         <scope>provided</scope>                  
    590                 </dependency>  
    591                  
    592                 <dependency> 
    593                 <groupId>org.antlr</groupId> 
    594                 <artifactId>antlr-runtime</artifactId> 
    595                 <version>3.3</version> 
    596                 </dependency> 
    597                 <dependency> 
    598                     <groupId>org.antlr</groupId> 
    599                     <artifactId>stringtemplate</artifactId> 
    600                     <version>3.2.1</version> 
    601                 </dependency> 
     573                 
     574                <!-- svn:http://dev.plutext.org/svn/docx4j/trunk/docx4j/m2  
     575                         
     576                        (stuff not available in public repositories)  
     577                                                  
     578                        mvn deploy:deploy-file -f wagon-svn-pom.xml -Dfile=dist/docx4j.jar -DpomFile=pom.xml  -Dpackaging=jar -DrepositoryId=docx4j -Durl=svn:http://dev.plutext.org/svn/docx4j/trunk/docx4j/m2 
     579                         
     580                --> 
    602581                 
    603582        </dependencies> 
Note: See TracChangeset for help on using the changeset viewer.