<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>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

	<groupId>com.nerderg.ajaxanywhere</groupId>
	<artifactId>ajaxanywhere-parent</artifactId>
	<version>2.0</version>
	<packaging>pom</packaging>

	<name>AjaxAnywhere</name>
    <description>
        This project is a fork of the original AjaxAnywhere project (http://ajaxanywhere.sourceforge.net/)whose aim is:
        - Simplify codebase
        - Use jQuery to implement the required scripts
        - Avoid the need for the developer to write any javascript at all to apply AjaxAnywhere to any component of the page
        - Remove JSF support
        - Remove dependency with Java SE HTML parser
    </description>
    <url>http://nerderg.com/AjaxAnywhere</url>

    <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>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
	</properties>

	<scm>
		<connection>scm:git:https://github.com/nerdErg/AjaxAnywhere.git</connection>
		<developerConnection>scm:git:https://github.com/nerdErg/AjaxAnywhere.git</developerConnection>
        <url>https://github.com/nerdErg/AjaxAnywhere.git</url>
	  <tag>AjaxAnywhere-2.0</tag>
  </scm>

    <organization>
        <name>Nerderg</name>
        <url>http://www.nerderg.com</url>
    </organization>

    <developers>
        <developer>
            <id>aruizca</id>
            <name>Angel Ruiz</name>
            <email>aruizca@gmail.com</email>
        </developer>
    </developers>

	<build>
		<plugins>
			<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>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.4</version>
            </plugin>
		</plugins>
	</build>

    <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.4</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

	<modules>
		<module>ajaxanywhere</module>
        <module>ajaxanywhere-testapp</module>
    </modules>
</project>