<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">

	<modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>org.postgis</groupId>
		<artifactId>postgis-main</artifactId>
		<version>1.3.3</version>
	</parent>

	<groupId>org.postgis</groupId>
	<artifactId>postgis-jdbc</artifactId>
	<version>1.3.3</version>
	<packaging>jar</packaging>

	<name>Postgis JDBC Driver</name>
	<url>http://www.postgis.org</url>
	<description>PostGIS adds support for geographic objects to the PostgreSQL object-relational database.</description>

	<licenses>
		<license>
			<name>GNU Lesser General Public License</name>
			<url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<scm>
		<url>http://trac.osgeo.org/postgis/browser/tags/1.3.3</url>
		<connection>scm:svn:http://svn.osgeo.org/postgis/tags/1.3.3/</connection>
		<developerConnection>scm:svn:http://svn.osgeo.org/postgis/tags/1.3.3/</developerConnection>
	</scm>

	<build>

		<sourceDirectory>src</sourceDirectory>
		
		<!-- TODO create version.properties file -->

		<!-- For the driverconfig property file -->
		<resources>
			<resource>
				<directory>src</directory>
				<filtering>false</filtering>
				<includes>
					<include>**/*.properties</include>
				</includes>
				<excludes>
					<exclude>**/*.java</exclude>
				</excludes>
			</resource>
		</resources>

		<plugins>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-sources</id>
						<phase>verify</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<phase>verify</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>

		</plugins>

	</build>

	<dependencies>

		<dependency>
			<groupId>org.postgis</groupId>
			<artifactId>postgis-stubs</artifactId>
			<version>1.3.3</version>
			<scope>compile</scope>
		</dependency>

	</dependencies>

</project>
