<?xml version="1.0" encoding="ISO-8859-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">


  <!-- Artifact tags and packaging ======================================================== -->
  <modelVersion>4.0.0</modelVersion>

  <groupId>informagen</groupId>
  <artifactId>propertyset-hibernate3</artifactId>
  <version>1.0.0</version>
  <packaging>jar</packaging>
  <name>PropertySet for Hibernate 3.x by Informagen, Inc.</name>


  <!--  Repositories ====================================================================== -->
  
  <repositories>
  
    <repository>
      <id>informagen.org-repo</id>
      
      <releases><checksumPolicy>ignore</checksumPolicy></releases>
      <snapshots><checksumPolicy>ignore</checksumPolicy></snapshots>
     
      <url>http://informagen.org/maven</url>
    </repository>
    
  </repositories>



  <!--  Project dependencies ============================================================== -->
  <dependencies>
  
    <!-- OSWorkflow ============================================ -->

    <dependency>
        <groupId>opensymphony</groupId>
        <artifactId>propertyset</artifactId>
        <version>1.4</version>
    </dependency>
    
    <dependency>
        <groupId>opensymphony</groupId>
        <artifactId>oscore</artifactId>
        <version>2.2.5</version>
    </dependency>

    <!-- Hibernate 3.x ========================================= -->

    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate</artifactId>
        <version>3.2.5.ga</version>
        <scope>compile</scope>
    </dependency>

    <!-- Apache Commons ======================================== -->

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

    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.14</version>
    </dependency>


    <!-- Base64 and XML Parsing ================================ -->
  
    <dependency>
      <groupId>javax.mail</groupId>
      <artifactId>mail</artifactId>
      <version>1.4</version>
        <scope>compile</scope>
    </dependency>

    <dependency>
        <groupId>xalan</groupId>
        <artifactId>xalan</artifactId>
        <version>2.7.0</version>
        <scope>compile</scope>
    </dependency>
    
    <!-- Unit Testing ========================================== -->

    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.4</version>
        <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>com.h2database</groupId>
        <artifactId>h2</artifactId>
        <version>1.0.66</version>
        <scope>test</scope>
    </dependency> 
 
    <dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
      <version>3.1.10-bin</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.14</version>
      <scope>test</scope>
    </dependency>

  </dependencies>


  <!--  Build plugins ====================================================================  -->

  <build>
 
    <plugins>
    
      <!-- Compile all modules with JDK 1.5 -->

      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
        
    </plugins>

    <extensions>
        <extension>
            <groupId>org.apache.maven.wagon</groupId>
            <artifactId>wagon-ftp</artifactId>
            <version>1.0-beta-2</version>
        </extension>
    </extensions>
    
  </build>

  <!--  Deploy ===========================================================================  -->

  <distributionManagement> 

    <site>
      <id>informagen.org-site</id>
      <name>Informagen.org Maven Site</name>
      <url>scp://will-gilbert.com/public_html/informagen-org/sites/${artifactId}</url>
    </site>
  
    <repository>
      <id>informagen.org-repo</id>
      <name>Informagen.org Repository</name>
      <url>ftp://will-gilbert.com/public_html/informagen-org/maven/</url>
    </repository>

  </distributionManagement> 


</project>
