<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>es.uvigo.ei.sing</groupId>
		<artifactId>sepia</artifactId>
		<!-- WARNING: change version in PARENT-PROJECT using mvn versions:set -DnewVersion=[new_version] 
			in order to change the version in all modules at-once. If everything works, 
			call mvn versions:commit, call mvn versions:revert, otherwise -->
		<version>0.0.1-SNAPSHOT</version>
	</parent>
	<artifactId>sepia-service</artifactId>
	<packaging>jar</packaging>

	<name>SEPIA - Service</name>
	<description>SEPIA (SEPsis Intelligent Assistant) - Service</description>

	<dependencies>
		<!-- General -->
		<dependency>
			<groupId>javax</groupId>
			<artifactId>javaee-api</artifactId>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>es.uvigo.ei.sing</groupId>
			<artifactId>sepia-domain</artifactId>
		</dependency>

		<!-- Testing -->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.hamcrest</groupId>
			<artifactId>java-hamcrest</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>
