<?xml version="1.0" encoding="UTF-8"?>
<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>com.fitbur</groupId>
        <artifactId>base</artifactId>
        <version>1.1</version>
    </parent>
    <groupId>com.fitbur</groupId>
    <artifactId>framework</artifactId>
    <version>0.5.0</version>
    <packaging>pom</packaging>

    <modules>
        <module>test</module>
        <module>core</module>
        <module>jersey</module>
    </modules>
    
    <name>
        FitburIO Framework
    </name>
    <description>
        FitburIO Framework is an open source Java framework that utilizes HK2 
        dependency injection framework to create resuable components. The 
        framework's core features can be used by any Java application though 
        it's more ideal to use it in-conjunction with Jersey 2.0 JAX-RS to 
        build restful services.
    </description>
    <inceptionYear>2014</inceptionYear>

    <url>http://www.github.com/FitburIO/framework</url>
    
    <organization>
        <name>Fitbur, Inc.</name>
        <url>http://www.github.com/FitburIO</url>
    </organization>
    
    <licenses>
        <license>
            <name>Apache License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0</url>
            <comments>Copyright 2014 Sharmarke Aden</comments>
            <distribution>repo</distribution>
        </license>
    </licenses>
    
    <issueManagement>
        <system>GitHub Issues</system>
        <url>https://github.com/FitburIO/framework/issues</url>
    </issueManagement>
    
    <scm>
        <connection>scm:git:https://github.com/FitburIO/framework.git</connection>
        <developerConnection>scm:git:https://github.com/FitburIO/framework.git</developerConnection>
        <url>https://github.com/FitburIO/base/tree/${project.scm.tag}</url>
        <tag>framework-0.5.0</tag>
    </scm>
    
    <developers>
        <developer>
            <id>saden1</id>
            <name>Sharmare Aden</name>
            <email>saden1@gmail.com</email>
            <url>http://www.github.com/saden1</url>
            <organization>Fitrbur</organization>
            <organizationUrl>http://www.github.com/FitburIO</organizationUrl>
            <timezone>-8</timezone>
            <roles>
                <role>Founder</role>
            </roles>
        </developer>
    </developers>
    
    <build>
        <plugins>
            <plugin>
                <groupId>org.pitest</groupId>
                <artifactId>pitest-maven</artifactId>
            </plugin>
        </plugins>
    </build>
  
</project>
