<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.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>5</version>
	</parent>
	<groupId>com.urbanmania</groupId>
	<artifactId>spring-property-annotations</artifactId>
	<version>0.1.8</version>
	<name>Spring Property Annotations</name>
	<description>Extended PropertyPlaceHolderConfigurer that injects configuration properties into your Spring components using annotations.</description>
	<url>http://code.google.com/p/spring-property-annotations/</url>
	<packaging>jar</packaging>
	<issueManagement>
		<system>Google Code</system>
		<url>http://code.google.com/p/spring-property-annotations/issues/list</url>
	</issueManagement>
	<scm>
		<connection>scm:hg:https://spring-property-annotations.googlecode.com/hg/</connection>
		<developerConnection>scm:hg:https://spring-property-annotations.googlecode.com/hg/</developerConnection>
		<url>http://code.google.com/p/spring-property-annotations/source/browse/</url>
	</scm>
	<ciManagement>
		<system>Mike</system>
		<url>https://build.mikeci.com/history.html?name=spring-property-annotations&amp;_sub=maven+integration+for+andriod</url>
	</ciManagement>
	<inceptionYear>2010</inceptionYear>
	<developers>
		<developer>
			<id>ricardo</id>
			<name>Ricardo Gladwell</name>
			<email>ricardo.gladwell@gmail.com</email>
			<url>http://rgladwell.wordpress.com/</url>
		</developer>
	</developers>
	<distributionManagement>
		<repository>
			<id>oss-sonatype</id>
			<name>Sonatype OSS Releases</name>
			<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
		</repository>
		<snapshotRepository>
			<id>oss-sonatype</id>
			<name>Sonatype OSS Snapshots</name>
			<url>http://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
	</distributionManagement>
	<organization>
		<name>Google Code</name>
	</organization>
	<licenses>
		<license>
			<name>Apache 2</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
		</license>
	</licenses>
	<build>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.0-beta-7</version>
				<configuration>
					<tagBase>file:///home/juven/services/subversion/release-test/tags</tagBase>
					<mavenExecutorId>forked-path</mavenExecutorId>
				</configuration>
			</plugin>
		</plugins>
	</build>
	<dependencies>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-context</artifactId>
			<version>2.5.6</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-beans</artifactId>
			<version>2.5.6</version>
		</dependency>
		<dependency>
			<groupId>commons-lang</groupId>
			<artifactId>commons-lang</artifactId>
			<version>2.4</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.7</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<profiles>
		<profile>
			<id>release-sign-artifacts</id>
			<activation>
				<property>
					<name>performRelease</name>
					<value>true</value>
				</property>
			</activation>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-gpg-plugin</artifactId>
						<version>1.0-alpha-4</version>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>