<?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>org.jboss</groupId>
        <artifactId>jboss-parent</artifactId>
        <version>19</version>
    </parent>

    <groupId>org.jboss.windup.decompiler.fernflower</groupId>
    <artifactId>windup-fernflower</artifactId>
    <version>1.0.0.20171018</version>
    <packaging>jar</packaging>

    <name>Windup Maven Build of Fernflower</name>

    <properties>
        <windup-fernflower.scm.connection>scm:git:https://github.com/windup/windup-fernflower.git</windup-fernflower.scm.connection>
        <windup-fernflower.developer.connection>scm:git:git@github.com:windup/windup-fernflower.git</windup-fernflower.developer.connection>
        <windup-fernflower.scm.url>http://github.com/windup/windup-fernflower</windup-fernflower.scm.url>
    </properties>

    <scm>
        <tag>windup-fernflower-1.0.0.20171018</tag>
        <connection>${windup-fernflower.scm.connection}</connection>
        <developerConnection>${windup-fernflower.developer.connection}</developerConnection>
        <url>${windup-fernflower.scm.url}</url>
    </scm>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-core</artifactId>
            <version>1.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-library</artifactId>
            <version>1.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.assertj</groupId>
            <artifactId>assertj-core</artifactId>
            <version>3.6.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <sourceDirectory>src</sourceDirectory>
        <testSourceDirectory>test</testSourceDirectory>

        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>3.2</version>
                    <configuration>
                        <compilerVersion>1.8</compilerVersion>
                        <source>1.8</source>
                        <target>1.8</target>
                        <encoding>UTF-8</encoding>
                        <fork>true</fork>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>
</project>
