<?xml version="1.0" encoding="UTF-8"?>

<!--
Copyright (c) 2006 Google, Inc. All rights reserved.

This program is licensed to you under the Apache License Version 2.0,
and you may not use this file except in compliance with the Apache License Version 2.0.
You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing,
software distributed under the Apache License Version 2.0 is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
-->

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>com.guicedee.services</groupId>
        <artifactId>guice-parent-holder</artifactId>
        <version>1.0.1.7-jre13</version>
    </parent>

    <packaging>pom</packaging>

    <artifactId>guice-parent</artifactId>

    <name>google.guice.parent</name>

    <description>
        Guice is a lightweight dependency injection framework for Java 6 and above
    </description>

    <url>https://github.com/google/guice</url>
    <inceptionYear>2006</inceptionYear>

    <organization>
        <name>Google, Inc.</name>
        <url>http://www.google.com</url>
    </organization>

    <mailingLists>
        <mailingList>
            <name>Guice Users List</name>
            <archive>http://groups.google.com/group/google-guice/topics</archive>
            <subscribe>http://groups.google.com/group/google-guice/subscribe</subscribe>
            <unsubscribe>http://groups.google.com/group/google-guice/subscribe</unsubscribe>
            <post>http://groups.google.com/group/google-guice/post</post>
        </mailingList>
        <mailingList>
            <name>Guice Developers List</name>
            <archive>http://groups.google.com/group/google-guice-dev/topics</archive>
            <subscribe>http://groups.google.com/group/google-guice-dev/subscribe</subscribe>
            <unsubscribe>http://groups.google.com/group/google-guice-dev/subscribe</unsubscribe>
            <post>http://groups.google.com/group/google-guice-dev/post</post>
        </mailingList>
    </mailingLists>

    <scm>
        <connection>scm:git:git://github.com/google/guice.git</connection>
        <developerConnection>scm:git:ssh://git@github.com/google/guice.git</developerConnection>
        <url>https://github.com/google/guice</url>
    </scm>

    <issueManagement>
        <system>Github</system>
        <url>https://github.com/google/guice/issues/</url>
    </issueManagement>

    <ciManagement>
        <system>Travis</system>
        <url>https://travis-ci.org/google/guice</url>
    </ciManagement>

    <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>
        <!--
         | The spec version of the public Guice API
        -->
        <guice.api.version>1.4</guice.api.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <!--
         | Use "-Dguice.with.jarjar=false" to build without jarjar
        -->
        <guice.with.jarjar>true</guice.with.jarjar>
        <!--
         | Use "-Dguice.with.no_aop=false" to skip the no-AOP variant
        -->
        <guice.with.no_aop>true</guice.with.no_aop>
    </properties>
    <dependencies>

    </dependencies>

    <build>
        <!--
         | Ant-style directories
        -->
        <sourceDirectory>${project.basedir}/src</sourceDirectory>
        <resources>
            <resource>
                <filtering>false</filtering>
                <directory>${project.basedir}/src</directory>
                <excludes>
                    <exclude>**/*.java</exclude>
                </excludes>
            </resource>
        </resources>
        <testSourceDirectory>${project.basedir}/test</testSourceDirectory>
        <testResources>
            <testResource>
                <filtering>false</filtering>
                <directory>${project.basedir}/test</directory>
                <excludes>
                    <exclude>**/*.java</exclude>
                </excludes>
            </testResource>
        </testResources>
        <pluginManagement>
            <plugins>
            </plugins>
        </pluginManagement>
    </build>

    <profiles>
        <profile>
            <id>enable-guice</id>
            <modules>
                <module>guice-bom</module>
                <module>guice-core</module>
                <module>extensions</module>
            </modules>
        </profile>

    </profiles>
</project>
