META-INF.maven.org.nlp2rdf.nif.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nif Show documentation
Show all versions of nif Show documentation
A small library for NLP Interchange Format (NIF) — Edit
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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.nlp2rdf</groupId> <artifactId>nif</artifactId> <packaging>jar</packaging> <version>0.3.4</version> <name>NIF library</name> <description> A small library for NLP Interchange Format (NIF) — Edit </description> <url>http://persistence.uni-leipzig.org/nlp2rdf/</url> <developers> <developer> <name>Sandro A. Coelho</name> <email>[email protected]</email> <organization>AKSW / KILT Group</organization> <organizationUrl>http://persistence.uni-leipzig.org/nlp2rdf/</organizationUrl> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:[email protected]:sandroacoelho/NIF.git</connection> <developerConnection>scm:git:[email protected]:sandroacoelho/NIF.git</developerConnection> <url>[email protected]:sandroacoelho/NIF.git</url> </scm> <properties> <jena.version>2.13.0</jena.version> <jena.iri.version>2.13.0</jena.iri.version> <log4j.version>1.2.17</log4j.version> <junit.version>4.12</junit.version> <rdfunit.version>0.8</rdfunit.version> <velocity.version>1.7</velocity.version> <guava.version>19.0</guava.version> </properties> <dependencies> <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-arq</artifactId> <version>${jena.version}</version> </dependency> <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-core</artifactId> <version>${jena.version}</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>${log4j.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.aksw.rdfunit</groupId> <artifactId>rdfunit-core</artifactId> <version>${rdfunit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.aksw.rdfunit</groupId> <artifactId>rdfunit-io</artifactId> <version>${rdfunit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>${velocity.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> </dependencies> <pluginRepositories> <pluginRepository> <id>sonatype-oss-public</id> <name>Sonatype OSS Public Maven repo</name> <url>https://oss.sonatype.org/content/groups/public</url> </pluginRepository> </pluginRepositories> <build> <plugins> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>4.2.0</version> <configuration> <repoToken>BO6evAzOtnDOpznHlIawE75vOQVnMdgky</repoToken> <sourceEncoding>UTF-8</sourceEncoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>4.2.0</version> <configuration> <repoToken>Q9LhiKxeU4W5MTBqF8f9ILmSwQq4Xk5nh</repoToken> <sourceEncoding>UTF-8</sourceEncoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <!--<configuration> <keyname>AKSW</keyname> <passphraseServerId>${aksw.keyname}</passphraseServerId> </configuration> --> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.6</version> <configuration> <check>true</check> <format>xml</format> <aggregate>true</aggregate> </configuration> </plugin> </plugins> </reporting> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>