<?xml version="1.0"?>
<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>
	<groupId>com.vineetmanohar</groupId>
	<artifactId>maven-twitter-plugin</artifactId>
	<version>0.1</version>
	<packaging>maven-plugin</packaging>
	<name>Maven Twitter Plugin</name>
	<description>Maven Twitter Plugin allows you to send status
		updates to Twitter. Increases communication between Project owners and
		Project users by automatically tweeting Maven build and release status
		via Twitter.</description>
	<url>http://code.google.com/p/maven-twitter-plugin/</url>
	<licenses>
		<license>
			<name>Apache License 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<issueManagement>
		<system>Google Code Built-in Issue Tracker</system>
		<url>http://code.google.com/p/maven-twitter-plugin/issues/list</url>
	</issueManagement>
	<scm>
		<connection>scm:svn:https://maven-twitter-plugin.googlecode.com/svn/tags/maven-twitter-plugin-0.1</connection>
		<developerConnection>scm:svn:https://maven-twitter-plugin.googlecode.com/svn/tags/maven-twitter-plugin-0.1</developerConnection>
		<url>http://code.google.com/p/maven-twitter-plugin/source/browse/#svn/tags/maven-twitter-plugin-0.1</url>
	</scm>
	<distributionManagement>
		<repository>
			<id>vineetmanohar-release-repo</id>
			<name>vineetmanohar.com Release Repo</name>
			<url>scp://repo.vineetmanohar.com/home/repo/html/releases/</url>
		</repository>
		<snapshotRepository>
			<id>vineetmanohar-snapshot-repo</id>
			<name>vineetmanohar.com Snapshot Repo</name>
			<url>scp://repo.vineetmanohar.com/home/repo/html/snapshots/</url>
		</snapshotRepository>
	</distributionManagement>
	<dependencies>
		<!-- unit tests -->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.0</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-plugin-api</artifactId>
			<version>2.0</version>
		</dependency>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-project</artifactId>
			<version>2.0</version>
		</dependency>
		
		<!-- underlying twitter library -->
		<dependency>
			<groupId>net.homeip.yusuke</groupId>
			<artifactId>twitter4j</artifactId>
			<version>2.0.9</version>
		</dependency>
	</dependencies>
	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-release-plugin</artifactId>
					<version>2.0-beta-9</version>
					<configuration>
						<tagBase>https://maven-twitter-plugin.googlecode.com/svn/tags</tagBase>
<!--						<remoteTagging>false</remoteTagging>-->
<!--						<preparationGoals>clean install</preparationGoals>-->
<!--						<autoVersionSubmodules>true</autoVersionSubmodules>-->
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-docck-plugin</artifactId>
					<version>1.0-beta-2</version>
				</plugin>
			</plugins>
		</pluginManagement>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-eclipse-plugin</artifactId>
				<version>2.4</version>
				<configuration>
					<downloadSources>true</downloadSources>
					<wtpversion>1.5</wtpversion>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-plugin-plugin</artifactId>
				<executions>
					<execution>
						<goals>
							<goal>descriptor</goal>
							<goal>helpmojo</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
		<extensions>
			<extension>
				<groupId>org.jvnet.wagon-svn</groupId>
				<artifactId>wagon-svn</artifactId>
				<version>1.8</version>
			</extension>
		</extensions>
	</build>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-plugin-plugin</artifactId>
				<version>2.4.1</version>
			</plugin>
		</plugins>
	</reporting>
	<inceptionYear>2009</inceptionYear>
	<developers>
		<developer>
			<email>vineet.manohar@gmail.com</email>
			<id>vineet.manohar</id>
			<name>Vineet Manohar</name>
			<url>http://www.vineetmanohar.com</url>
			<roles>
				<role>developer</role>
			</roles>
		</developer>
	</developers>
</project>
