<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://maven.apache.org/xsd/maven-project-3.0.0.xsd">
<!-- 
/*
 * Copyright 2001-2004 The Apache Software Foundation.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
 -->

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

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

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

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

  <currentVersion>0.2</currentVersion>
  <!-- details about the organization that 'owns' the project -->

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

  <inceptionYear>2004</inceptionYear>
  <package>com.infodesire.jmodel</package>
  <logo></logo>
  <description>Modelling java applications with java</description>
  <!-- a short description of what the project does -->

  <shortDescription>How to use maven in different situations</shortDescription>
  <!-- the project home page -->

  <url></url>
  <issueTrackingUrl></issueTrackingUrl>

  <siteAddress>wolga</siteAddress>
  <siteDirectory>/projects/bsm</siteDirectory>
  <distributionDirectory>/dists/bsm</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>scm:cvs:ext:${maven.username}@wolga:/l/cvs:jmodel</connection>
    <url/>
  </repository>
  <!-- any mailing lists for the project -->

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

  <developers>

    <developer>
      <name>Lars Loeffler</name>
      <id>lars</id>
      <email>lars.loeffler@infodesire.com</email>
      <organization>Information Desire Software</organization>
      <roles>
        <role>Java Developer</role>
      </roles>
    </developer>
	
  </developers>
  
  <!-- jar files the project is dependent on -->

  <dependencies>

	<dependency>
		<id>ant</id>
		<version>1.6</version>
	</dependency>

	<dependency>
		<id>junit</id>
		<version>3.8.1</version>
	</dependency>
<!--
	<dependency>
		<id>commons-cli</id>
		<version>1.0</version>
	</dependency>
-->
	<dependency>
		<id>velocity</id>
		<version>1.4</version>
	</dependency>

	<dependency>
		<id>commons-lang</id>
		<version>2.0</version>
	</dependency>
	
	<dependency>
		<id>commons-logging</id>
		<version>1.0.3</version>
	</dependency>

	<dependency>
		<id>commons-beanutils</id>
		<version>1.6.1</version>
	</dependency>

	<dependency>
		<id>log4j</id>
		<version>1.2.7</version>
		<url>http://jakarta.apache.org/log4j/</url>
	</dependency>
	
    <dependency>
      <groupId>commons-digester</groupId>
      <artifactId>commons-digester</artifactId>
      <version>1.3</version>
      <type>jar</type>
    </dependency>

    <dependency>
      <groupId>commons-jelly</groupId>
      <artifactId>commons-jelly</artifactId>
      <version>1.0-RC1</version>
    </dependency>


  </dependencies>
  
  <!-- build information for the project -->

  <build>
    <nagEmailAddress>lars.loeffler@infodesire.com</nagEmailAddress>
    <sourceDirectory>src/java</sourceDirectory>
    <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
    <unitTest>
      <includes>
        <include>**/*Test.java</include>
      </includes>
      <excludes>
        <exclude>**/AbstractTest.java</exclude>
      </excludes>
    </unitTest>


<!-- This section is compulsory -->
    <resources> 
      <resource> 
        <directory>${basedir}/src/plugin-resources</directory> 
        <targetPath>plugin-resources</targetPath> 
      </resource> 
      <resource> 
        <directory>${basedir}</directory> 
        <includes> 
          <include>plugin.jelly</include> 
          <include>plugin.properties</include> 
          <include>project.properties</include> 
          <include>project.xml</include> 
<!--
    	      <include>velocity.properties</include> 
	          <include>jmodel.ant.properties</include> 
-->
        </includes> 
      </resource> 
      <resource>
        <directory>src/conf</directory>
        <includes>
          <include>*.properties</include>
          <include>*.vm</include>
        </includes>
      </resource>
    </resources>

  </build>
</project>
