Home | History | Annotate | Download | only in 1.4.7
      1 <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">
      2     <!--
      3      Copyright (C) 2006 Joe Walnes.
      4      Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 XStream committers.
      5      All rights reserved.
      6      
      7      The software in this package is published under the terms of the BSD
      8      style license a copy of which has been included with this distribution in
      9      the LICENSE.txt file.
     10      
     11      Created on 29. July 2006 by Mauro Talevi
     12      -->
     13   <modelVersion>4.0.0</modelVersion>
     14   <parent>
     15     <groupId>org.codehaus</groupId>
     16     <artifactId>codehaus-parent</artifactId>
     17     <version>3</version><!-- 4 required Java 5 -->
     18     <relativePath />
     19   </parent>
     20   <groupId>com.thoughtworks.xstream</groupId>
     21   <artifactId>xstream-parent</artifactId>
     22   <packaging>pom</packaging>
     23   <version>1.4.7</version>
     24   <name>XStream Parent</name>
     25   <description>
     26     XStream is a serialization library from Java objects to XML and back.
     27   </description>
     28 
     29   <inceptionYear>2004</inceptionYear>
     30   <organization>
     31     <name>XStream</name>
     32     <url>http://xstream.codehaus.org</url>
     33   </organization>
     34 
     35   <profiles>
     36     <profile>
     37       <id>jdk15-ge</id>
     38       <activation>
     39         <jdk>[1.5,)</jdk>
     40       </activation>
     41       <build>
     42         <plugins>
     43           <plugin>
     44             <groupId>org.apache.felix</groupId>
     45             <artifactId>maven-bundle-plugin</artifactId>
     46             <executions>
     47               <execution>
     48                 <id>bundle-manifest</id>
     49                 <phase>process-classes</phase>
     50                 <goals>
     51                   <goal>manifest</goal>
     52                 </goals>
     53               </execution>
     54             </executions>
     55           </plugin>
     56         </plugins>
     57       </build>
     58       <modules>
     59         <!--module>xstream-builder</module-->
     60       </modules>
     61     </profile>
     62     <profile>
     63       <id>jdk15</id>
     64       <activation>
     65         <jdk>1.5</jdk>
     66       </activation>
     67       <properties>
     68         <version.hsqldb>1.8.0.10</version.hsqldb>
     69         <version.org.hibernate.core>3.6.6.Final</version.org.hibernate.core>
     70       </properties>
     71     </profile>
     72     <profile>
     73       <!-- build with Maven 2.0.10 !!! -->
     74       <id>jdk14</id>
     75       <activation>
     76         <jdk>1.4</jdk>
     77       </activation>
     78       <properties>
     79         <version.java.source>1.3</version.java.source>
     80         <version.java.target>1.3</version.java.target>
     81         <link.javadoc.javase>http://docs.oracle.com/javase/1.4.2/docs/api/</link.javadoc.javase>
     82         <!-- repeat Hibernate version dependencies, JDK intervals in activation is not supported with M2.0.x -->
     83         <version.hsqldb>1.8.0.10</version.hsqldb>
     84         <version.org.hibernate.core>3.3.2.GA</version.org.hibernate.core>
     85         <version.org.hibernate.envers>3.6.6.Final</version.org.hibernate.envers><!-- not usable with JDK 1.4 -->
     86       </properties>
     87     </profile>
     88   </profiles>
     89 
     90   <modules>
     91     <module>xstream</module>
     92     <module>xstream-hibernate</module>
     93     <module>xstream-benchmark</module>
     94     <module>xstream-distribution</module>
     95   </modules>
     96 
     97   <licenses>
     98     <license>
     99       <name>BSD style</name>
    100       <url>http://xstream.codehaus.org/license.html</url>
    101       <distribution>repo</distribution>
    102     </license>
    103   </licenses>
    104 
    105   <dependencyManagement>
    106     <dependencies>
    107       <dependency>
    108         <groupId>com.thoughtworks.xstream</groupId>
    109         <artifactId>xstream</artifactId>
    110         <version>1.4.7</version>
    111       </dependency>
    112       <dependency>
    113         <groupId>com.thoughtworks.xstream</groupId>
    114         <artifactId>xstream</artifactId>
    115         <version>1.4.7</version>
    116         <classifier>tests</classifier>
    117         <type>test-jar</type>
    118         <scope>test</scope>
    119       </dependency>
    120       <dependency>
    121         <groupId>com.thoughtworks.xstream</groupId>
    122         <artifactId>xstream</artifactId>
    123         <version>1.4.7</version>
    124         <classifier>javadoc</classifier>
    125         <scope>provided</scope>
    126       </dependency>
    127       <dependency>
    128         <groupId>com.thoughtworks.xstream</groupId>
    129         <artifactId>xstream-hibernate</artifactId>
    130         <version>1.4.7</version>
    131       </dependency>
    132       <dependency>
    133         <groupId>com.thoughtworks.xstream</groupId>
    134         <artifactId>xstream-hibernate</artifactId>
    135         <version>1.4.7</version>
    136         <classifier>javadoc</classifier>
    137         <scope>provided</scope>
    138       </dependency>
    139       <dependency>
    140         <groupId>com.thoughtworks.xstream</groupId>
    141         <artifactId>xstream-benchmark</artifactId>
    142         <version>1.4.7</version>
    143       </dependency>
    144       <dependency>
    145         <groupId>com.thoughtworks.xstream</groupId>
    146         <artifactId>xstream-benchmark</artifactId>
    147         <version>1.4.7</version>
    148         <classifier>javadoc</classifier>
    149         <scope>provided</scope>
    150       </dependency>
    151             
    152       <dependency>
    153         <groupId>commons-io</groupId>
    154         <artifactId>commons-io</artifactId>
    155         <version>${version.commons.io}</version>
    156       </dependency>
    157 
    158       <dependency>
    159         <groupId>commons-cli</groupId>
    160         <artifactId>commons-cli</artifactId>
    161         <version>${version.commons.cli}</version>
    162       </dependency>
    163 
    164       <dependency>
    165         <groupId>commons-lang</groupId>
    166         <artifactId>commons-lang</artifactId>
    167         <version>${version.commons.lang}</version>
    168       </dependency>
    169 
    170       <dependency>
    171         <groupId>cglib</groupId>
    172         <artifactId>cglib-nodep</artifactId>
    173         <version>${version.cglib.nodep}</version>
    174       </dependency>
    175       <dependency>
    176         <groupId>javassist</groupId>
    177         <artifactId>javassist</artifactId>
    178         <version>${version.javaassist}</version>
    179       </dependency>
    180 
    181       <dependency>
    182         <groupId>dom4j</groupId>
    183         <artifactId>dom4j</artifactId>
    184         <version>${version.dom4j}</version>
    185         <exclusions>
    186           <exclusion>
    187             <groupId>xml-apis</groupId>
    188             <artifactId>xml-apis</artifactId>
    189           </exclusion>
    190         </exclusions>
    191       </dependency>
    192 
    193       <dependency>
    194         <groupId>org.jdom</groupId>
    195         <artifactId>jdom</artifactId>
    196         <version>${version.org.jdom}</version>
    197       </dependency>
    198       <dependency>
    199         <groupId>org.jdom</groupId>
    200         <artifactId>jdom2</artifactId>
    201         <version>${version.org.jdom2}</version>
    202       </dependency>
    203 
    204       <dependency>
    205         <groupId>joda-time</groupId>
    206         <artifactId>joda-time</artifactId>
    207         <version>${version.joda-time}</version>
    208       </dependency>
    209 
    210       <dependency>
    211         <groupId>com.megginson.sax</groupId>
    212         <artifactId>xml-writer</artifactId>
    213         <version>${version.com.megginson.sax.xml-writer}</version>
    214         <exclusions>
    215           <exclusion>
    216             <groupId>xml-apis</groupId>
    217             <artifactId>xml-apis</artifactId>
    218           </exclusion>
    219         </exclusions>
    220       </dependency>
    221 
    222       <dependency>
    223         <groupId>stax</groupId>
    224         <artifactId>stax</artifactId>
    225         <version>${version.stax}</version>
    226       </dependency>
    227       <dependency>
    228         <groupId>stax</groupId>
    229         <artifactId>stax-api</artifactId>
    230         <version>${version.stax.api}</version>
    231       </dependency>
    232 
    233       <dependency>
    234         <groupId>org.codehaus.woodstox</groupId>
    235         <artifactId>wstx-asl</artifactId>
    236         <version>${version.org.codehaus.woodstox.asl}</version>
    237       </dependency>
    238 
    239       <dependency>
    240         <groupId>xom</groupId>
    241         <artifactId>xom</artifactId>
    242         <version>${version.xom}</version>
    243         <exclusions>
    244           <exclusion>
    245             <groupId>xerces</groupId>
    246             <artifactId>xmlParserAPIs</artifactId>
    247           </exclusion>
    248           <exclusion>
    249             <groupId>xerces</groupId>
    250             <artifactId>xercesImpl</artifactId>
    251           </exclusion>
    252           <exclusion>
    253             <groupId>xalan</groupId>
    254             <artifactId>xalan</artifactId>
    255           </exclusion>
    256           <exclusion>
    257             <groupId>jaxen</groupId>
    258             <artifactId>jaxen</artifactId>
    259           </exclusion>
    260         </exclusions>
    261       </dependency>
    262 
    263       <dependency>
    264         <groupId>xpp3</groupId>
    265         <artifactId>xpp3_min</artifactId>
    266         <version>${version.xpp3}</version>
    267       </dependency>
    268       <dependency>
    269         <groupId>net.sf.kxml</groupId>
    270         <artifactId>kxml2-min</artifactId>
    271         <version>${version.net.sf.kxml.kxml2}</version>
    272       </dependency>
    273       <dependency>
    274         <groupId>net.sf.kxml</groupId>
    275         <artifactId>kxml2</artifactId>
    276         <version>${version.net.sf.kxml.kxml2}</version>
    277       </dependency>
    278       <dependency>
    279         <groupId>xmlpull</groupId>
    280         <artifactId>xmlpull</artifactId>
    281         <version>${version.xmlpull}</version>
    282       </dependency>
    283 
    284       <dependency>
    285         <groupId>oro</groupId>
    286         <artifactId>oro</artifactId>
    287         <version>${version.oro}</version>
    288       </dependency>
    289 
    290       <dependency>
    291         <groupId>org.json</groupId>
    292         <artifactId>json</artifactId>
    293         <version>${version.org.json}</version>
    294       </dependency>
    295 
    296       <dependency>
    297         <groupId>org.codehaus.jettison</groupId>
    298         <artifactId>jettison</artifactId>
    299         <version>${version.org.codehaus.jettison}</version>
    300       </dependency>
    301 
    302       <dependency>
    303         <groupId>xml-apis</groupId>
    304         <artifactId>xml-apis</artifactId>
    305         <version>${version.xml-apis}</version>
    306       </dependency>
    307 
    308       <dependency>
    309         <groupId>xerces</groupId>
    310         <artifactId>xercesImpl</artifactId>
    311         <version>${version.xerces.impl}</version>
    312       </dependency>
    313 
    314       <dependency>
    315         <groupId>org.hibernate</groupId>
    316         <artifactId>hibernate-core</artifactId>
    317         <version>${version.org.hibernate.core}</version>
    318       </dependency>
    319       <dependency>
    320         <groupId>org.hibernate</groupId>
    321         <artifactId>hibernate-envers</artifactId>
    322         <version>${version.org.hibernate.envers}</version>
    323         <exclusions>
    324           <exclusion>
    325             <groupId>cglib</groupId>
    326             <artifactId>cglib</artifactId>
    327           </exclusion>
    328         </exclusions>
    329       </dependency>
    330       <dependency>
    331         <groupId>org.hsqldb</groupId>
    332         <artifactId>hsqldb</artifactId>
    333         <version>${version.hsqldb}</version>
    334       </dependency>
    335       <dependency>
    336         <groupId>org.slf4j</groupId>
    337         <artifactId>slf4j-api</artifactId>
    338         <version>${version.org.slf4j}</version>
    339         <scope>runtime</scope>
    340       </dependency>
    341       <dependency>
    342         <groupId>org.slf4j</groupId>
    343         <artifactId>slf4j-simple</artifactId>
    344         <version>${version.org.slf4j}</version>
    345         <scope>runtime</scope>
    346       </dependency>
    347 
    348       <!-- always test-scoped -->
    349       <dependency>
    350         <groupId>junit</groupId>
    351         <artifactId>junit</artifactId>
    352         <version>${version.junit}</version>
    353         <scope>test</scope>
    354       </dependency>
    355 
    356       <dependency>
    357         <groupId>jmock</groupId>
    358         <artifactId>jmock</artifactId>
    359         <version>${version.jmock}</version>
    360         <scope>test</scope>
    361       </dependency>
    362 
    363     </dependencies>
    364   </dependencyManagement>
    365 
    366   <build>
    367     <sourceDirectory>${basedir}/src/java</sourceDirectory>
    368     <resources>
    369       <resource>
    370         <directory>${basedir}/src/java</directory>
    371         <includes>
    372           <include>**/*.properties</include>
    373           <include>**/*.xml</include>
    374         </includes>
    375       </resource>
    376     </resources>
    377     <testSourceDirectory>${basedir}/src/test</testSourceDirectory>
    378     <testResources>
    379       <testResource>
    380         <directory>${basedir}/src/test</directory>
    381         <includes>
    382           <include>**/*.xml</include>
    383           <include>**/*.xsl</include>
    384           <include>**/*.txt</include>
    385         </includes>
    386       </testResource>
    387     </testResources>
    388     <pluginManagement>
    389       <plugins>
    390         <plugin>
    391           <groupId>org.apache.maven.plugins</groupId>
    392           <artifactId>maven-antrun-plugin</artifactId>
    393           <version>${version.plugin.maven.antrun}</version>
    394         </plugin>
    395         <plugin>
    396           <groupId>org.apache.maven.plugins</groupId>
    397           <artifactId>maven-assembly-plugin</artifactId>
    398           <version>${version.plugin.maven.assembly}</version>
    399         </plugin>
    400         <plugin>
    401           <groupId>org.apache.maven.plugins</groupId>
    402           <artifactId>maven-clean-plugin</artifactId>
    403           <version>${version.plugin.maven.clean}</version>
    404         </plugin>
    405         <plugin>
    406           <groupId>org.apache.maven.plugins</groupId>
    407           <artifactId>maven-compiler-plugin</artifactId>
    408           <version>${version.plugin.maven.compiler}</version>
    409           <configuration>
    410             <source>${version.java.source}</source>
    411             <target>${version.java.target}</target>
    412           </configuration>
    413         </plugin>
    414         <plugin>
    415           <groupId>org.apache.maven.plugins</groupId>
    416           <artifactId>maven-dependency-plugin</artifactId>
    417           <version>${version.plugin.maven.dependency}</version>
    418         </plugin>
    419         <plugin>
    420           <groupId>org.apache.maven.plugins</groupId>
    421           <artifactId>maven-deploy-plugin</artifactId>
    422           <version>${version.plugin.maven.deploy}</version>
    423         </plugin>
    424         <plugin>
    425           <groupId>org.apache.maven.plugins</groupId>
    426           <artifactId>maven-eclipse-plugin</artifactId>
    427           <configuration>
    428             <downloadSources>true</downloadSources>
    429             <projectNameTemplate>[artifactId]-1.4.x</projectNameTemplate>
    430           </configuration>
    431         </plugin>
    432         <plugin>
    433           <groupId>org.apache.maven.plugins</groupId>
    434           <artifactId>maven-install-plugin</artifactId>
    435           <version>${version.plugin.maven.install}</version>
    436         </plugin>
    437         <plugin>
    438           <groupId>org.apache.maven.plugins</groupId>
    439           <artifactId>maven-jar-plugin</artifactId>
    440           <version>${version.plugin.maven.jar}</version>
    441           <configuration>
    442             <archive>
    443               <manifest>
    444                 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
    445                 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
    446               </manifest>
    447               <manifestEntries>
    448                 <Specification-Version>${project.info.majorVersion}.${project.info.minorVersion}</Specification-Version>
    449                 <X-Compile-Source>${version.java.source}</X-Compile-Source>
    450                 <X-Compile-Target>${version.java.target}</X-Compile-Target>
    451                 <X-Builder>Maven ${maven.version}</X-Builder>
    452                 <X-Build-Time>${maven.build.timestamp}</X-Build-Time>
    453                 <X-Build-Os>${os.name}</X-Build-Os>
    454               </manifestEntries>
    455             </archive>
    456           </configuration>
    457         </plugin>
    458         <plugin>
    459           <groupId>org.apache.maven.plugins</groupId>
    460           <artifactId>maven-javadoc-plugin</artifactId>
    461           <version>${version.plugin.maven.javadoc}</version>
    462           <configuration>
    463             <source>${version.java.source}</source>
    464             <links>
    465               <link>${link.javadoc.javase}</link>
    466             </links>
    467             <archive>
    468               <manifest>
    469                 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
    470                 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
    471               </manifest>
    472               <manifestEntries>
    473                 <Specification-Version>${project.info.majorVersion}.${project.info.minorVersion}</Specification-Version>
    474               </manifestEntries>
    475             </archive>
    476           </configuration>
    477         </plugin>
    478         <plugin>
    479           <groupId>org.apache.maven.plugins</groupId>
    480           <artifactId>maven-release-plugin</artifactId>
    481           <version>${version.plugin.maven.release}</version>
    482           <configuration>
    483             <goals>deploy</goals>
    484             <autoVersionSubmodules>true</autoVersionSubmodules>
    485           </configuration>
    486         </plugin>
    487         <plugin>
    488           <groupId>org.apache.maven.plugins</groupId>
    489           <artifactId>maven-resources-plugin</artifactId>
    490           <version>${version.plugin.maven.resources}</version>
    491         </plugin>
    492         <plugin>
    493           <groupId>org.apache.maven.plugins</groupId>
    494           <artifactId>maven-site-plugin</artifactId>
    495           <version>${version.plugin.maven.site}</version>
    496         </plugin>
    497         <plugin>
    498           <groupId>org.apache.maven.plugins</groupId>
    499           <artifactId>maven-source-plugin</artifactId>
    500           <version>${version.plugin.maven.source}</version>
    501           <executions>
    502             <execution>
    503               <id>attach-sources</id>
    504               <phase>package</phase>
    505               <goals>
    506                 <goal>jar-no-fork</goal>
    507               </goals>
    508             </execution>
    509           </executions>
    510           <configuration>
    511             <archive>
    512               <manifest>
    513                 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
    514                 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
    515               </manifest>
    516               <manifestEntries>
    517                 <Specification-Version>${project.info.majorVersion}.${project.info.minorVersion}</Specification-Version>
    518                 <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
    519                 <Bundle-Name>${project.name} Sources</Bundle-Name>
    520                 <Bundle-SymbolicName>${project.artifactId}.sources</Bundle-SymbolicName>
    521                 <Bundle-Vendor>${project.organization.name} Sources</Bundle-Vendor>
    522                 <Bundle-Version>${project.info.osgiVersion} Sources</Bundle-Version>
    523                 <Eclipse-SourceBundle>${project.artifactId};version=${project.info.osgiVersion}</Eclipse-SourceBundle>
    524                 <X-Compile-Source>${version.java.source}</X-Compile-Source>
    525                 <X-Compile-Target>${version.java.target}</X-Compile-Target>
    526                 <X-Builder>Maven ${maven.version}</X-Builder>
    527                 <X-Build-Time>${maven.build.timestamp}</X-Build-Time>
    528                 <X-Build-Os>${os.name}</X-Build-Os>
    529               </manifestEntries>
    530             </archive>
    531           </configuration>
    532         </plugin>
    533         <plugin>
    534           <groupId>org.apache.maven.plugins</groupId>
    535           <artifactId>maven-surefire-plugin</artifactId>
    536           <version>${version.plugin.maven.surefire}</version>
    537           <configuration>
    538             <forkMode>once</forkMode>
    539             <printSummary>true</printSummary>
    540             <useFile>false</useFile>
    541             <includes>
    542                 <include>**/*Test.java</include>
    543                 <include>**/*TestSuite.java</include>
    544             </includes>
    545             <excludes>
    546                 <exclude>**/Abstract*Test.java</exclude>
    547                 <exclude>**/*$*.java</exclude>
    548             </excludes>
    549             <systemProperties>
    550               <property>
    551                 <name>java.awt.headless</name>
    552                 <value>true</value>
    553               </property>
    554             </systemProperties>
    555           </configuration>
    556         </plugin>
    557         <plugin>
    558           <groupId>org.apache.maven.plugins</groupId>
    559           <artifactId>maven-surefire-report-plugin</artifactId>
    560           <version>${version.plugin.maven.surefire}</version>
    561         </plugin>
    562         <plugin>
    563           <groupId>org.codehaus.mojo</groupId>
    564           <artifactId>build-helper-maven-plugin</artifactId>
    565           <version>${version.plugin.mojo.build-helper}</version>
    566         </plugin>
    567         <plugin>
    568           <groupId>org.codehaus.mojo</groupId>
    569           <artifactId>cobertura-maven-plugin</artifactId>
    570           <version>${version.plugin.mojo.cobertura}</version>
    571           <executions>
    572             <execution>
    573               <goals>
    574                 <goal>clean</goal>
    575               </goals>
    576             </execution>
    577           </executions>
    578         </plugin>
    579         <plugin>
    580           <groupId>org.codehaus.mojo</groupId>
    581           <artifactId>jxr-maven-plugin</artifactId>
    582           <version>${version.plugin.mojo.jxr}</version>
    583         </plugin>
    584         <plugin>
    585           <groupId>org.codehaus.xsite</groupId>
    586           <artifactId>xsite-maven-plugin</artifactId>
    587           <version>${version.plugin.codehaus.xsite}</version>
    588         </plugin>
    589         <plugin>
    590           <groupId>org.apache.felix</groupId>
    591           <artifactId>maven-bundle-plugin</artifactId>
    592           <version>${version.plugin.felix.bundle}</version>
    593           <configuration>
    594             <manifestLocation>${project.build.directory}/OSGi</manifestLocation>
    595             <instructions>
    596               <_nouses>true</_nouses>
    597               <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
    598               <Specification-Version>${project.info.majorVersion}.${project.info.minorVersion}</Specification-Version><!-- FELIX-3392 -->
    599             </instructions>
    600             <archive>
    601               <manifest>
    602                 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries><!-- FELIX-3392 -->
    603               </manifest>
    604             </archive>
    605           </configuration>
    606         </plugin>
    607       </plugins>
    608     </pluginManagement>
    609     <plugins>
    610       <plugin>
    611         <groupId>org.codehaus.mojo</groupId>
    612         <artifactId>build-helper-maven-plugin</artifactId>
    613         <executions>
    614           <execution>
    615           <id>versions</id>
    616           <phase>initialize</phase>
    617           <goals>
    618             <goal>maven-version</goal>
    619             <goal>parse-version</goal>
    620           </goals>
    621           <configuration>
    622             <propertyPrefix>project.info</propertyPrefix>
    623           </configuration>
    624           </execution>
    625         </executions>
    626       </plugin>
    627       <plugin>
    628         <groupId>org.apache.maven.plugins</groupId>
    629         <artifactId>maven-release-plugin</artifactId>
    630         <configuration>
    631           <tagBase>https://svn.codehaus.org/xstream/tags</tagBase>
    632         </configuration>
    633       </plugin>
    634     </plugins>
    635     <extensions>
    636       <extension>
    637         <groupId>org.apache.maven.wagon</groupId>
    638         <artifactId>wagon-webdav</artifactId>
    639         <version>${version.org.apache.maven.wagon.webdev}</version>
    640       </extension>
    641     </extensions>
    642   </build>
    643 
    644   <distributionManagement>
    645     <!--  
    646       The server id codehaus-nexus-snapshots, codehaus-nexus-staging, and
    647       codehaus.org must appear ~/.m2/settings.xml cf. settings-template.xml.
    648       http://hausmates.codehaus.org/Codehaus+Maven+Repository+Usage+Guide
    649     -->
    650     <site>
    651       <id>codehaus.org</id>
    652       <name>Codehaus XStream Site</name>
    653       <url>dav:https://dav.codehaus.org/xstream</url>
    654     </site>
    655   </distributionManagement>
    656 
    657   <scm>
    658     <connection>scm:svn:http://svn.codehaus.org/xstream/tags/XSTREAM_1_4_7</connection>
    659     <developerConnection>scm:svn:https://svn.codehaus.org/xstream/tags/XSTREAM_1_4_7</developerConnection>
    660     <url>http://fisheye.codehaus.org/browse/xstream/tags/XSTREAM_1_4_7</url>
    661   </scm>
    662   
    663   <properties>
    664     <version.java.source>1.5</version.java.source>
    665     <version.java.target>1.5</version.java.target>
    666 
    667     <version.plugin.codehaus.xsite>1.2.1</version.plugin.codehaus.xsite>
    668     <version.plugin.felix.bundle>2.3.7</version.plugin.felix.bundle>
    669     <version.plugin.maven.antrun>1.1</version.plugin.maven.antrun>
    670     <version.plugin.maven.assembly>2.1</version.plugin.maven.assembly>
    671     <version.plugin.maven.clean>2.2</version.plugin.maven.clean>
    672     <version.plugin.maven.compiler>2.1</version.plugin.maven.compiler><!-- JDK 1.4 compatible -->
    673     <version.plugin.maven.dependency>2.1</version.plugin.maven.dependency>
    674     <version.plugin.maven.deploy>2.3</version.plugin.maven.deploy>
    675     <version.plugin.maven.install>2.2</version.plugin.maven.install>
    676     <version.plugin.maven.jar>2.2</version.plugin.maven.jar>
    677     <version.plugin.maven.javadoc>2.7</version.plugin.maven.javadoc>
    678     <version.plugin.maven.release>2.1</version.plugin.maven.release>
    679     <version.plugin.maven.resources>2.2</version.plugin.maven.resources>
    680     <version.plugin.maven.site>2.0-beta-6</version.plugin.maven.site>
    681     <version.plugin.maven.source>2.1.2</version.plugin.maven.source>
    682     <version.plugin.maven.surefire>2.4.3</version.plugin.maven.surefire>
    683     <version.plugin.mojo.build-helper>1.5</version.plugin.mojo.build-helper>
    684     <version.plugin.mojo.cobertura>2.0</version.plugin.mojo.cobertura>
    685     <version.plugin.mojo.jxr>2.0-beta-1</version.plugin.mojo.jxr>
    686 
    687     <version.org.apache.maven.wagon.webdev>1.0-beta-2</version.org.apache.maven.wagon.webdev>
    688 
    689     <version.cglib.nodep>2.2</version.cglib.nodep>
    690     <version.com.megginson.sax.xml-writer>0.2</version.com.megginson.sax.xml-writer>
    691     <version.commons.cli>1.1</version.commons.cli>
    692     <version.commons.io>1.4</version.commons.io>
    693     <version.commons.lang>2.4</version.commons.lang>
    694     <version.dom4j>1.6.1</version.dom4j>
    695     <version.hsqldb>2.2.8</version.hsqldb>
    696     <version.javaassist>3.12.1.GA</version.javaassist>
    697     <version.jmock>1.0.1</version.jmock>
    698     <version.joda-time>1.6</version.joda-time>
    699     <version.junit>3.8.1</version.junit>
    700     <version.net.sf.kxml.kxml2>2.3.0</version.net.sf.kxml.kxml2>
    701     <version.org.codehaus.jettison>1.2</version.org.codehaus.jettison>
    702     <version.org.codehaus.woodstox.asl>3.2.7</version.org.codehaus.woodstox.asl>
    703     <version.org.hibernate.core>4.2.5.Final</version.org.hibernate.core>
    704     <version.org.hibernate.envers>${version.org.hibernate.core}</version.org.hibernate.envers>
    705     <version.org.jdom>1.1.3</version.org.jdom>
    706     <version.org.jdom2>2.0.5</version.org.jdom2>
    707     <version.org.json>20080701</version.org.json>
    708     <version.org.slf4j>1.6.1</version.org.slf4j>
    709     <version.oro>2.0.8</version.oro>
    710     <version.stax>1.2.0</version.stax>
    711     <version.stax.api>1.0.1</version.stax.api>
    712     <version.xerces.impl>2.8.1</version.xerces.impl>
    713     <version.xml-apis>1.3.04</version.xml-apis>
    714     <version.xmlpull>1.1.3.1</version.xmlpull>
    715     <version.xom>1.1</version.xom>
    716     <version.xpp3>1.1.4c</version.xpp3>
    717 
    718     <link.javadoc.javase>http://docs.oracle.com/javase/7/docs/api/</link.javadoc.javase>
    719   </properties>
    720 </project>
    721