
<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>RVLib</artifactId>
    <version>0.2.2</version>
    <packaging>jar</packaging>

    <name>RVLib</name>
    <url>http://maven.apache.org</url>

     <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>
   <build>
        <plugins>
            <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 zum Ausführen von JUnit-Tests-->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.12</version>
                <configuration>
                    <testFailureIgnore>true</testFailureIgnore>
                </configuration>

            </plugin>
            <!-- Plugin zum Ausführen von einer Klasse in einer Phase -->
            <!--<plugin>  
                    <groupId>org.codehaus.mojo</groupId>  
                    <artifactId>exec-maven-plugin</artifactId>  
                    <version>1.1.1</version>  
                    <executions>  
                    <execution>  
                            <phase>test</phase>  
                            <goals>  
                                    <goal>java</goal>  
                            </goals>  
                            <configuration>  
                                    <mainClass>de.uni_luebeck.isp.rvtool.example.Main2</mainClass>  
                            </configuration>  
                    </execution>  
                    </executions>  
            </plugin>-->

            <plugin>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.4</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <phase>deploy</phase>
                        <goals><goal>jar</goal></goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
            <type>jar</type>
            <scope>test</scope>
        </dependency>
        <!--dependency>
            <groupId>net.sf.javabdd</groupId>
            <artifactId>JavaBDD</artifactId>
            <version>1.0b2</version>
        </dependency-->
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>27.0.1-jre</version>
            <type>jar</type>
        </dependency>
        <dependency>
            <groupId>com.googlecode.totallylazy</groupId>
            <artifactId>totallylazy</artifactId>
            <version>1193</version>
        </dependency>

    </dependencies>
    <repositories>
        <repository>
            <id>repo.bodar.com</id>
            <url>https://repo.bodar.com</url>
        </repository>
    </repositories>
</project>
