<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>fr.jcgay.maven</groupId>
        <artifactId>jcgay-build-configuration</artifactId>
        <version>1.14</version>
    </parent>

    <groupId>fr.jcgay.send-notification</groupId>
    <artifactId>send-notification-project</artifactId>
    <version>0.14.0</version>
    <packaging>pom</packaging>
    <name>Send Notification Project</name>
    <description>Easily send notification to popular tools and services</description>
    <scm>
        <url>https://github.com/jcgay/send-notification</url>
        <connection>scm:git:git://github.com/jcgay/send-notification.git</connection>
        <developerConnection>scm:git:git@github.com:jcgay/send-notification.git</developerConnection>
        <tag>v0.14.0</tag>
    </scm>

    <ciManagement>
        <system>travis-ci</system>
        <url>https://travis-ci.org/jcgay/send-notification</url>
    </ciManagement>

    <issueManagement>
        <system>GitHub</system>
        <url>https://github.com/jcgay/send-notification/issues</url>
    </issueManagement>

    <properties>
        <bintray.package>send-notification</bintray.package>
    </properties>

    <modules>
        <module>send-notification</module>
        <module>send-notification-cli</module>
    </modules>

    <build>
        <pluginManagement>
            <plugins>
            <plugin>
                <groupId>org.eluder.coveralls</groupId>
                <artifactId>coveralls-maven-plugin</artifactId>
                <configuration>
                    <sourceDirectories>
                        <sourceDirectory>send-notification/target/generated-sources/annotations</sourceDirectory>
                    </sourceDirectories>
                </configuration>
            </plugin>
            </plugins>
        </pluginManagement>
        <plugins>
            <plugin>
                <artifactId>maven-source-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>build-with-jdk-6</id>
            <activation>
                <jdk>[1.7,)</jdk>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <artifactId>maven-toolchains-plugin</artifactId>
                        <executions>
                            <execution>
                                <goals>
                                    <goal>toolchain</goal>
                                </goals>
                            </execution>
                        </executions>
                        <configuration>
                            <toolchains>
                                <jdk>
                                    <version>1.6</version>
                                </jdk>
                            </toolchains>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

</project>
