<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>de.taimos</groupId>
        <artifactId>oss-parent</artifactId>
        <version>5</version>
    </parent>
    <artifactId>dvalin-parent</artifactId>
    <version>1.5</version>
    <packaging>pom</packaging>
    <name>Taimos Microservices Framework</name>
    <inceptionYear>2015</inceptionYear>
    <properties>
        <org.springframework.version>4.2.5.RELEASE</org.springframework.version>
        <jackson.version>2.7.3</jackson.version>
        <joda.time.version>2.9.3</joda.time.version>
        <slf4j.version>1.7.21</slf4j.version>
        <daemon.version>2.6</daemon.version>
        <mockito.version>1.10.19</mockito.version>
        <junit.version>4.12</junit.version>
        <aws.version>1.10.68</aws.version>
    </properties>
    <scm>
        <connection>scm:git:git@github.com:taimos/dvalin.git</connection>
        <developerConnection>scm:git:git@github.com:taimos/dvalin.git</developerConnection>
        <url>scm:git:git@github.com:taimos/dvalin.git</url>
        <tag>v1.5</tag>
    </scm>
    <dependencies>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>19.0</version>
        </dependency>
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
            <version>${joda.time.version}</version>
        </dependency>
        <dependency>
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>jsr305</artifactId>
            <version>3.0.1</version>
        </dependency>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>${slf4j.version}</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>${mockito.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-module-junit4</artifactId>
            <version>1.6.4</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-api-mockito</artifactId>
            <version>1.6.4</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-simple</artifactId>
            <version>${slf4j.version}</version>
            <scope>test</scope>
        </dependency>
        <!--<dependency>-->
        <!--&lt;!&ndash;  must be on the classpath  &ndash;&gt;-->
        <!--<groupId>org.jacoco</groupId>-->
        <!--<artifactId>org.jacoco.agent</artifactId>-->
        <!--<classifier>runtime</classifier>-->
        <!--<version>0.7.6.201602180812</version>-->
        <!--<scope>test</scope>-->
        <!--</dependency>-->
    </dependencies>
    <build>
        <plugins>
            <!--<plugin>-->
            <!--<groupId>org.apache.maven.plugins</groupId>-->
            <!--<artifactId>maven-surefire-plugin</artifactId>-->
            <!--<version>2.18.1</version>-->
            <!--<configuration>-->
            <!--<systemPropertyVariables>-->
            <!--<jacoco-agent.destfile>target/jacoco.exec</jacoco-agent.destfile>-->
            <!--</systemPropertyVariables>-->
            <!--</configuration>-->
            <!--</plugin>-->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <configuration>
                    <additionalparam>-Xdoclint:none</additionalparam>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.jacoco</groupId>
                <artifactId>jacoco-maven-plugin</artifactId>
                <version>0.7.6.201602180812</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>prepare-agent</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>report</id>
                        <phase>test</phase>
                        <goals>
                            <goal>report</goal>
                        </goals>
                    </execution>
                    <!--<execution>-->
                        <!--<id>default-instrument</id>-->
                        <!--<goals>-->
                            <!--<goal>instrument</goal>-->
                        <!--</goals>-->
                    <!--</execution>-->
                    <!--<execution>-->
                        <!--<id>default-restore-instrumented-classes</id>-->
                        <!--<goals>-->
                            <!--<goal>restore-instrumented-classes</goal>-->
                        <!--</goals>-->
                    <!--</execution>-->
                    <!--<execution>-->
                        <!--<id>default-report</id>-->
                        <!--<phase>prepare-package</phase>-->
                        <!--<goals>-->
                            <!--<goal>report</goal>-->
                        <!--</goals>-->
                    <!--</execution>-->
                </executions>
            </plugin>
        </plugins>
    </build>
    <modules>
        <module>daemon</module>
        <module>test</module>
        <module>cloud</module>
        <module>notification</module>
        <module>jaxrs</module>
        <module>jaxrs-jwtauth</module>
        <module>mongodb</module>
        <module>jpa</module>
        <module>dynamodb</module>
        <module>interconnect</module>
    </modules>
</project>
