<?xml version="1.0" encoding="Windows-1252"?>
<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>7</version>
	</parent>

	<groupId>com.crawljax</groupId>
	<artifactId>crawljax-parent-pom</artifactId>
	<version>3.4</version>
	<packaging>pom</packaging>

	<name>Crawljax parent POM</name>
	<description>
		Crawling Ajax applications through dynamic analysis and
		reconstruction of the UI state changes. Crawljax is based on a
		method which dynamically builds a `state-flow graph' modeling
		the various navigation paths and states within an Ajax
		application.
	</description>
	<url>http://crawljax.com</url>
	<inceptionYear>2012</inceptionYear>

	<prerequisites>
		<maven>3.0.5</maven>
	</prerequisites>

	<properties>
		<maven.compiler.source>1.7</maven.compiler.source>
		<maven.compiler.target>1.7</maven.compiler.target>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

		<slf4j.version>1.7.5</slf4j.version>
		<logback.version>1.0.13</logback.version>
		<selenium.version>[2.37.1,)</selenium.version>
		<jetty.version>9.0.6.v20130930</jetty.version>
		<metrics.version>3.0.1</metrics.version>
	</properties>

	<scm>
		<connection>scm:git:git@github.com:crawljax/crawljax.git</connection>
		<developerConnection>scm:git:git@github.com:crawljax/crawljax.git</developerConnection>
		<url>https://github.com/crawljax/crawljax</url>
		<tag>crawljax-3.4</tag>
	</scm>

	<issueManagement>
		<system>GitHub</system>
		<url>https://github.com/crawljax/crawljax/issues</url>
	</issueManagement>

	<ciManagement>
		<system>Jenkins</system>
		<url>http://jenkins.crawljax.com</url>
	</ciManagement>

	<mailingLists>
		<mailingList>
			<name>Crawljax Mailing List</name>
			<subscribe>http://groups.google.com/group/crawljax/subscribe</subscribe>
			<unsubscribe>crawljax+unsubscribe@googlegroups.com</unsubscribe>
			<post>crawljax@googlegroups.com</post>
			<archive>http://groups.google.com/group/crawljax</archive>
		</mailingList>
	</mailingLists>

	<licenses>
		<license>
			<name>The Apache Software License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<modules>
		<module>core</module>
		<module>cli</module>
		<module>examples</module>
		<module>test-utils</module>
		<module>plugins</module>
		<module>plugin-archetype</module>
	</modules>

	<dependencyManagement>
		<dependencies>

			<dependency>
				<groupId>junit</groupId>
				<artifactId>junit</artifactId>
				<version>4.11</version>
			</dependency>
		</dependencies>
	</dependencyManagement>

	<dependencies>

		<dependency>
			<groupId>com.google.guava</groupId>
			<artifactId>guava</artifactId>
			<version>15.0</version>
		</dependency>

		<!-- Logging -->
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>jcl-over-slf4j</artifactId>
			<version>${slf4j.version}</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>jul-to-slf4j</artifactId>
			<version>${slf4j.version}</version>
		</dependency>
		<dependency>
			<groupId>ch.qos.logback</groupId>
			<artifactId>logback-classic</artifactId>
			<version>${logback.version}</version>
			<exclusions>
				<exclusion>
					<groupId>org.slf4j</groupId>
					<artifactId>slf4j-api</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>com.google.code.findbugs</groupId>
			<artifactId>jsr305</artifactId>
			<version>2.0.2</version>
		</dependency>

		<!-- Test dependencies -->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<artifactId>hamcrest-library</artifactId>
			<groupId>org.hamcrest</groupId>
			<version>1.3</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-core</artifactId>
			<version>1.9.5</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<artifactId>maven-compiler-plugin</artifactId>
					<groupId>org.apache.maven.plugins</groupId>
					<version>3.1</version>
				</plugin>
				<plugin>
					<artifactId>maven-surefire-plugin</artifactId>
					<groupId>org.apache.maven.plugins</groupId>
					<version>2.15</version>
				</plugin>
				<plugin>
					<artifactId>maven-clean-plugin</artifactId>
					<groupId>org.apache.maven.plugins</groupId>
					<version>2.5</version>
				</plugin>
				<plugin>
					<artifactId>maven-deploy-plugin</artifactId>
					<groupId>org.apache.maven.plugins</groupId>
					<version>2.7</version>
				</plugin>
				<plugin>
					<artifactId>maven-jar-plugin</artifactId>
					<groupId>org.apache.maven.plugins</groupId>
					<version>2.4</version>
				</plugin>
				<plugin>
					<artifactId>maven-install-plugin</artifactId>
					<groupId>org.apache.maven.plugins</groupId>
					<version>2.4</version>
				</plugin>
				<plugin>
					<artifactId>maven-resources-plugin</artifactId>
					<groupId>org.apache.maven.plugins</groupId>
					<version>2.6</version>
				</plugin>
				<plugin>
					<groupId>pl.project13.maven</groupId>
					<artifactId>git-commit-id-plugin</artifactId>
					<version>2.1.5</version>
					<executions>
						<execution>
							<goals>
								<goal>revision</goal>
							</goals>
						</execution>
					</executions>
					<configuration>
						<dateFormat>yyyy-MM-dd HH:mm:ss z</dateFormat>
						<verbose>true</verbose>
						<generateGitPropertiesFile>true</generateGitPropertiesFile>
						<gitDescribe>
							<always>true</always>
							<abbrev>7</abbrev>
							<dirty>-dirty</dirty>
						</gitDescribe>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>

		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.4.1</version>
				<configuration>
					<tagNameFormat>crawljax-@{project.version}</tagNameFormat>
				</configuration>
			</plugin>
		</plugins>
	</build>

	<developers>
		<developer>
			<id>amesbah</id>
			<name>Ali Mesbah</name>
			<email>a.mesbah@gmail.com</email>
			<url>http://www.ece.ubc.ca/~amesbah/</url>
			<organization>SALTLab, UBC</organization>
			<organizationUrl>http://salt.ece.ubc.ca</organizationUrl>
			<timezone>-8</timezone>
		</developer>
		<developer>
			<id>arie.van.deursen</id>
			<name>Arie van Deursen</name>
			<email>arie.vanDeursen@tudelft.nl</email>
			<url>http://www.st.ewi.tudelft.nl/~arie/</url>
			<organization>SWERL, TU Delft</organization>
			<organizationUrl>http://swerl.tudelft.nl</organizationUrl>
			<timezone>+1</timezone>
		</developer>
		<developer>
			<id>alexnederlof</id>
			<name>Alex Nederlof</name>
			<email>alex@nederlof.com</email>
			<url>http://alex.nederlof.com</url>
			<organization>TU Delft</organization>
			<timezone>+1</timezone>
		</developer>
	</developers>
</project>
