<?xml version="1.0"?>
<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>sfr-bug</groupId>
    <artifactId>bug</artifactId>
    <packaging>pom</packaging>
    <name>srf</name>
    <version>0.77.0</version>
    <description>srf bug.</description>
    <url>http://andyhot.di.uoa.gr</url>
	
	<modules>
		<module>subproject</module>
	</modules>	

    <developers>
        <developer>
            <id>aa</id>
            <name>Andreas Andreou</name>
            <email>andyhot@apache.org</email>
            <url>http://andyhot.di.uoa.gr</url>
            <roles>
                <role>Developer</role>
            </roles>
            <timezone>+2</timezone>
        </developer>
    </developers>

	<build>	
	<pluginManagement>
	<plugins>
		<plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.4.2</version>
                    <configuration>
                        <forkMode>pertest</forkMode>
                    </configuration>
                </plugin>	
				</plugins>
				</pluginManagement>
	</build>

    <dependencies>        
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>5.5</version>
            <classifier>jdk15</classifier>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>junit</groupId>
                    <artifactId>junit</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>
	
	
</project>

