<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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>it.uniroma2.art.owlart</groupId>
	<artifactId>owlart-sesame2impl</artifactId>
	<name>OWL Art API Sesame2Impl</name>
	<version>1.3</version>
	<packaging>jar</packaging>
	<description>Sesame2 Implementation of OWL Art API</description>
	<url>http://art.uniroma2.it/owlart</url>
	<issueManagement>
		<system>Jira</system>
		<url>https://art-uniroma2.atlassian.net/browse/OWLART</url>
	</issueManagement>
	<developers>
		<developer>
			<id>starred</id>
			<name>Armando Stellato</name>
			<email>stellato@info.uniroma2.it</email>
			<url>http://art.uniroma2.it/stellato</url>
			<organization>ART Group, University of Rome, Tor Vergata</organization>
			<organizationUrl>http://art.uniroma2.it</organizationUrl>
			<roles>
				<role>main developer</role>
			</roles>			
		</developer>
		<developer>
			<id>fiorelli</id>
			<name>Manuel Fiorelli</name>
			<email>fiorelli@info.uniroma2.it</email>
			<url>http://art.uniroma2.it/fiorelli</url>
			<organization>ART Group, University of Rome, Tor Vergata</organization>
			<organizationUrl>http://art.uniroma2.it</organizationUrl>
			<roles>
				<role>osgi-porting</role>
				<role>various contributions</role>
			</roles>
		</developer>	
	</developers>
	<scm>
		<connection>svn:http://owlart-sesame2.googlecode.com/svn/</connection>
		<developerConnection>svn:https://owlart-sesame2.googlecode.com/svn/</developerConnection>
		<tag>1.0.2</tag>
		<url>http://owlart-sesame2.googlecode.com/svn/</url>
	</scm>
	<organization>
		<name>ART Group, University of Rome, Tor Vergata</name>
		<url>http://art.uniroma2.it</url>
	</organization>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>2.4</version>
				<executions>
					<execution>
						<goals>
							<goal>test-jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.4.2</version>
				<configuration>
					<excludes>
						<exclude>**/*.java</exclude>
					</excludes>
				</configuration>
			</plugin>
		</plugins>
	</build>
	<repositories>
		<!--
			<repository> <releases> <enabled>true</enabled> </releases>
			<snapshots> <enabled>false</enabled> </snapshots>
			<id>aduna-opensource.releases</id> <name>Aduna Open Source - Maven
			releases</name>
			<url>http://repo.aduna-software.org/maven2/releases</url>
			</repository>
		-->
		<repository>
			<id>clojars.org</id>
			<url>http://clojars.org/repo</url>
		</repository>
	</repositories>
	<dependencies>
		<dependency>
			<groupId>it.uniroma2.art.owlart</groupId>
			<artifactId>owlart-api</artifactId>
			<version>2.3</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>it.uniroma2.art.owlart</groupId>
			<artifactId>owlart-api</artifactId>
			<version>2.3</version>
			<type>test-jar</type>
			<scope>test</scope>
		</dependency>


		<dependency>
			<groupId>art.uniroma2.it.org.openrdf.sesame</groupId>
			<artifactId>sesame-onejar</artifactId>
			<version>2.7.10</version>
		</dependency>
		<dependency>
			<groupId>commons-httpclient</groupId>
			<artifactId>commons-httpclient</artifactId>
			<version>3.1</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
			<version>2.4</version>
		</dependency>
		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-core</artifactId>
			<version>2.4.0</version>
		</dependency>
		<dependency>
			<groupId>net.sf.opencsv</groupId>
			<artifactId>opencsv</artifactId>
			<version>2.0</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.5</version>
			<type>jar</type>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>1.6.1</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>
	</dependencies>
	<licenses>
		<license>
			<name>Mozilla Public License Version 1.1</name>
			<url> http//www.mozilla.org/MPL/</url>
			<distribution>repo</distribution>
			<comments />
		</license>
	</licenses>
</project>
