
<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>
    <groupId>de.uni_luebeck.isp.rvtool</groupId>
    <artifactId>Example</artifactId>
    <version>0.2.1</version>
    <packaging>jar</packaging>

    <name>Example</name>
    
    <distributionManagement>
        <repository>
            <id>isp-deployment</id>
            <name>Internal Releases</name>
            <url>https://sourcecode.isp.uni-luebeck.de/nexus/content/repositories/releases/</url>
        </repository>
        <snapshotRepository>
            <id>isp-deployment</id>
            <name>Internal Releases</name>
            <url>http://sourcecode.isp.uni-luebeck.de/nexus/content/repositories/snapshots/</url>
        </snapshotRepository>
    </distributionManagement>
    
    <dependencies>
        <dependency>
            <scope>test</scope>
            <groupId>${project.groupId}</groupId>
            <artifactId>JUnitRV</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <scope>test</scope>
            <groupId>${project.groupId}</groupId>
            <artifactId>Z3Support</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <scope>test</scope>
            <groupId>${project.groupId}</groupId>
            <artifactId>EQSupport</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <scope>test</scope>
            <groupId>${project.groupId}</groupId>
            <artifactId>Salt</artifactId>
            <version>${project.version}</version>
        </dependency>
    </dependencies>
    
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.4</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>attach-test-sources</id>
                        <goals>
                            <goal>test-jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <compilerArgument>-Xlint:all</compilerArgument>
                    <showWarnings>true</showWarnings>
                    <showDeprecation>true</showDeprecation>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.15</version>
                <configuration>
                    <skipTests>false</skipTests>
                    <excludes>
                        <exclude>**/*.java</exclude>
                    </excludes>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.6</version>
                <executions>
                    <execution>
                        <id>test-jar</id>
                        <phase>package</phase>
                        <goals>
                            <goal>test-jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

</project>
