<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>nl.fizzit.maven.plugins</groupId>
	<artifactId>maven-tstamp-plugin</artifactId>
	<version>1.0</version>
	<packaging>maven-plugin</packaging>
	<name>Maven TStamp Plugin</name>
	<description>Based on Ant's TStamp task this plugin makes date and time properties available</description>
	<parent>
		<groupId>net.java</groupId>
		<artifactId>jvnet-parent</artifactId>
		<version>1</version>
	</parent>
	<licenses>
		<license>
			<name>Apache License 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	
	<scm>
		<connection>scm:svn:http://svn.java.net/svn/maventstampplugin~svn/tags/maven-tstamp-plugin-1.0</connection>
		<developerConnection>scm:svn:https://svn.java.net/svn/maventstampplugin~svn/tags/maven-tstamp-plugin-1.0</developerConnection>
		<url>http://java.net/projects/maventstampplugin/sources/svn/tags/maven-tstamp-plugin-1.0</url>
	</scm>
	
	<developers>
		<developer>
			<id>AvdW</id>
			<name>Aede van der Weij</name>
			<email>vdweij at hotmail dot com</email>
		</developer>
	</developers>
	
	<dependencies>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-plugin-api</artifactId>
			<version>2.0.2</version>
		</dependency>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-project</artifactId>
			<version>2.0</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.8.2</version>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<!-- can go once ready for release -->
			<plugin>
				<groupId>nl.fizzit.maven.plugins</groupId>
				<artifactId>maven-tstamp-plugin</artifactId>
				<version>${project.version}</version>
				<configuration>
					<formats>
						<format>
							<property>test.date</property>
							<pattern>yyyy MMMM dd hhmm</pattern>
							<locale>en,US</locale>
							<timezone>Asia/Tokyo</timezone>
							<offset>1</offset>
							<unit>day</unit>
						</format>
						<format>
							<property>expire.date</property>
							<pattern>yyyyMMdd</pattern>
							<offset>30</offset>
							<unit>day</unit>
						</format>
					</formats>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</plugin>
			<!-- defined in parent ok
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.1.2</version>
				<executions>
					<execution>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			-->
			<!-- defined in parent ok 
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.3</version>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
      		</plugin>
      		 -->
		</plugins>
	</build>
</project>