blob: 4ce2f92f3d7d790050cec7e915b6e30a4ca6a8a7 [file] [log] [blame]
<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>org.apache.commons</groupId>
<artifactId>commons-rdf</artifactId>
<version>0.0.1</version>
<packaging>jar</packaging>
<name>commons-rdf</name>
<description>Commons Java library for RDF 1.1</description>
<inceptionYear>2014</inceptionYear>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>wikier</id>
<name>Sergio Fernández</name>
<email>wikier@apache.org</email>
<organization>Apache Software Foundation</organization>
</developer>
<developer>
<id>andy</id>
<name>Andy Seaborne</name>
<email>andy@apache.org</email>
<organization>Apache Software Foundation</organization>
</developer>
<developer>
<id>ansell</id>
<name>Peter Ansell</name>
<email>p_ansell@yahoo.com</email>
<organization>OpenRDF</organization>
</developer>
<developer>
<id>betehess</id>
<name>Alexandre Bertails</name>
<email>alexandre@bertails.org</email>
<organization>W3C</organization>
</developer>
</developers>
<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>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>