
<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>

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

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

    <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>
        	</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>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <artifactId>hamcrest-core</artifactId>
                    <groupId>org.hamcrest</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>RVLib</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-core</artifactId>
            <version>1.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.javassist</groupId>
            <artifactId>javassist</artifactId>
            <version>3.24.0-GA</version>
        </dependency>
        <dependency>
            <artifactId>guava</artifactId>
            <groupId>com.google.guava</groupId>
            <type>jar</type>
            <version>27.0.1-jre</version>
        </dependency>
    </dependencies>
</project>
