<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>com.github.rapidark</groupId>
    <artifactId>rapid-ark</artifactId>
    <version>0.1.0</version>
  </parent>
  <artifactId>rapid-ark-framework</artifactId>

	<dependencies>
		<dependency>
			<groupId>com.github.rapidark</groupId>
			<artifactId>rapid-ark-preloader</artifactId>
			<version>${project.version}</version>
		</dependency>
	</dependencies>
	
		
  <build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.1</version>
				<configuration>
					<source>1.8</source>
					<target>1.8</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
				<version>${cobertura.version}</version>
				<configuration>
					<formats>
						<format>xml</format>
					</formats>
					<!-- aggregated reports for multi-module projects -->
					<aggregate>true</aggregate>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.eluder.coveralls</groupId>
				<artifactId>coveralls-maven-plugin</artifactId>
				<version>${coveralls.version}</version>
				<configuration>
					<repoToken>yXLPqytyM6N7Xt0BurnObcJtqWuJzIPcX</repoToken>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>