Home | History | Annotate | Download | only in 1.5.4
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <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/xsd/maven-4.0.0.xsd">
      3   <modelVersion>4.0.0</modelVersion>
      4 
      5   <parent>
      6     <groupId>org.codehaus.plexus</groupId>
      7     <artifactId>plexus</artifactId>
      8     <version>2.0.5</version>
      9   </parent>
     10 
     11   <artifactId>plexus-containers</artifactId>
     12   <version>1.5.4</version>
     13   <packaging>pom</packaging>
     14 
     15   <name>Plexus Containers</name>
     16   <description>
     17     Plexus IoC Container core with companion tools.
     18   </description>
     19 
     20   <modules>
     21     <module>plexus-component-annotations</module>
     22     <module>plexus-component-metadata</module>
     23     <module>plexus-component-javadoc</module>
     24     <module>plexus-container-default</module>
     25   </modules>
     26 
     27   <scm>
     28     <connection>scm:svn:https://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.5.4</connection>
     29     <developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.5.4</developerConnection>
     30     <url>http://fisheye.codehaus.org/browse/plexus/plexus-containers/tags/plexus-containers-1.5.4</url>
     31   </scm>
     32 
     33   <properties>
     34     <classWorldsVersion>2.2.2</classWorldsVersion>
     35     <plexusUtilsVersion>1.4.5</plexusUtilsVersion>
     36     <xbeanReflectVersion>3.4</xbeanReflectVersion>
     37     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     38   </properties>
     39 
     40   <dependencyManagement>
     41     <dependencies>
     42       <dependency>
     43         <groupId>org.codehaus.plexus</groupId>
     44         <artifactId>plexus-container-default</artifactId>
     45         <version>${project.version}</version>
     46       </dependency>
     47       <dependency>
     48         <groupId>org.codehaus.plexus</groupId>
     49         <artifactId>plexus-component-annotations</artifactId>
     50         <version>${project.version}</version>
     51       </dependency>
     52       <dependency>
     53         <groupId>org.codehaus.plexus</groupId>
     54         <artifactId>plexus-component-metadata</artifactId>
     55         <version>${project.version}</version>
     56       </dependency>
     57       <dependency>
     58         <groupId>org.codehaus.plexus</groupId>
     59         <artifactId>plexus-classworlds</artifactId>
     60         <version>${classWorldsVersion}</version>
     61       </dependency>
     62       <dependency>
     63         <groupId>org.codehaus.plexus</groupId>
     64         <artifactId>plexus-utils</artifactId>
     65         <version>${plexusUtilsVersion}</version>
     66       </dependency>
     67       <dependency>
     68         <groupId>org.apache.xbean</groupId>
     69         <artifactId>xbean-reflect</artifactId>
     70         <version>${xbeanReflectVersion}</version>
     71       </dependency>
     72       <dependency>
     73         <groupId>com.thoughtworks.qdox</groupId>
     74         <artifactId>qdox</artifactId>
     75         <version>1.9.2</version>
     76       </dependency>
     77       <dependency>
     78         <groupId>jdom</groupId>
     79         <artifactId>jdom</artifactId>
     80         <version>1.0</version>
     81       </dependency>
     82       <dependency>
     83         <groupId>org.apache.maven</groupId>
     84         <artifactId>maven-plugin-api</artifactId>
     85         <version>2.0.9</version>
     86       </dependency>
     87       <dependency>
     88         <groupId>org.apache.maven</groupId>
     89         <artifactId>maven-model</artifactId>
     90         <version>2.0.9</version>
     91       </dependency>
     92       <dependency>
     93         <groupId>org.apache.maven</groupId>
     94         <artifactId>maven-project</artifactId>
     95         <version>2.0.9</version>
     96       </dependency>
     97       <dependency>
     98         <groupId>com.google.collections</groupId>
     99         <artifactId>google-collections</artifactId>
    100         <version>1.0</version>
    101       </dependency>
    102       <dependency>
    103         <groupId>junit</groupId>
    104         <artifactId>junit</artifactId>
    105         <version>3.8.2</version>
    106       </dependency>
    107     </dependencies>
    108   </dependencyManagement>
    109 
    110   <build>
    111     <plugins>
    112       <plugin>
    113         <artifactId>maven-compiler-plugin</artifactId>
    114         <configuration>
    115           <source>1.5</source>
    116           <target>1.5</target>
    117           <encoding>${project.build.sourceEncoding}</encoding>
    118         </configuration>
    119       </plugin>
    120     </plugins>
    121   </build>
    122 </project>
    123