<?xml version="1.0" encoding="UTF-8"?>
<!--
// (C) 1998-2006 Information Desire Software GmbH
// www.infodesire.com
//
// $Header$
-->

<project>
  <!-- the version of maven's project object model -->

  <pomVersion>3</pomVersion>
  <!-- a unique name for this project -->

  <id>bsmmodel</id>
  <!-- a short but descriptive name for the project -->

  <name>BSM Model</name>
  <!-- The version of the project under development, e.g.
       1.1, 1.2, 2.0-SNAPSHOT -->

  <currentVersion>${bsmmodel.version}</currentVersion>
  <!-- details about the organization that 'owns' the project -->

  <organization>
    <name>Information Desire Software GmbH</name>
    <url>http://www.infodesire.com/</url>
    <logo></logo>
  </organization>
  <!-- the year the project started -->

  <inceptionYear>1998</inceptionYear>
  <package>com.infodesire.bsmmodel</package>
  <logo></logo>
  <description>Model for some aspects of the BSM framework</description>
  <!-- a short description of what the project does -->

  <shortDescription></shortDescription>
  <!-- the project home page -->

  <url></url>
  <issueTrackingUrl></issueTrackingUrl>
  <siteAddress></siteAddress>
  <siteDirectory></siteDirectory>
  <distributionDirectory></distributionDirectory>
  <!-- the version control repository and http url for online access
       the connection element has the form:
       scm:<system>:<system specific connection string> -->

  <repository>
    <connection></connection>
    <url></url>
  </repository>
  <!-- any mailing lists for the project -->

  <mailingLists/>
  <!-- who the developers are for the project -->

  <developers/>
  <!-- jar files the project is dependent on -->

	<dependencies>
		
		<dependency>
			<id>jmodel</id>
			<version>${jmodel.version}</version>
		</dependency>
		
		<dependency>
			<groupId>com.infodesire.bsm</groupId>
			<artifactId>bsm</artifactId>
			<version>${bsm.version}</version>
			<url>http://www.infodesire.com/</url>
		</dependency>
			
		<dependency>
			<id>commons-lang</id>
			<version>${cl.version}</version>
		</dependency>
		
	</dependencies>
	
  <!-- build information for the project -->

  <build>

    <nagEmailAddress>mail@infodesire.com</nagEmailAddress>

    <sourceDirectory>src/java</sourceDirectory>
    <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
	
    <unitTest>
      <includes>
        <include>**/*Test.java</include>
      </includes>
      <excludes>
        <exclude>**/NaughtyTest.java</exclude>
      </excludes>
    </unitTest>
	
    <resources>
      <resource>
        <directory>src/jmodel</directory>
        <includes>
          <include>**</include>
        </includes>
      </resource>
    </resources>
	
  </build>
  
</project>


