<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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>br.com.arsmachina</groupId>
		<artifactId>parent</artifactId>
		<version>1.2.13</version>
		<relativePath>../parent</relativePath>
	</parent>
	<artifactId>tapestry-rss</artifactId>
	<version>0.0.1</version>
	<name>tapestry-rss</name>
	<description>Package that implements an RSS 2.0 feed for Apache Tapestry 5.</description>
	<organization>
		<name>Ars Machina Tecnologia da Informação Ltda.</name>
		<url>http://arsmachina.com.br</url>
	</organization>
	<developers>
		<developer>
			<id>thiagohp</id>
			<name>Thiago H. de Paula Figueiredo</name>
			<email>thiagohp at gmail dot com</email>
			<url>http://www.arsmachina.com.br/thiago</url>
			<roles>
				<role>Creator</role>
				<role>Developer</role>
			</roles>
			<timezone>GMT-3</timezone>
		</developer>
	</developers>	
	<licenses>
		<license>
			<name>Apache Software License 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<dependencies>
		<dependency>
			<groupId>org.apache.tapestry</groupId>
			<artifactId>tapestry-core</artifactId>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>br.com.arsmachina</groupId>
			<artifactId>tapestry-url-rewriter</artifactId>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<configuration>
					<archive>
						<manifestEntries>
							<Tapestry-Module-Classes>br.com.arsmachina.tapestry_rss.services.RssModule</Tapestry-Module-Classes>
						</manifestEntries>
					</archive>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</plugin>			
		</plugins>
	</build>
	<scm>
		<connection>scm:git:https://github.com/thiagohp/tapestry-rss.git</connection>
	    <developerConnection>scm:git:https://github.com/thiagohp/tapestry-rss.git</developerConnection>
	    <url>https://github.com/thiagohp/tapestry-rss.git</url>	
	</scm>
	<issueManagement>
		<url>https://github.com/thiagohp/tapestry-rss/issues</url>
	</issueManagement>
	<repositories>
		<repository>
			<id>apache-staging</id>
			<name>Apache staging</name>
			<url>https://repository.apache.org/content/groups/staging</url>
		</repository>
	</repositories>
</project>

