resolver-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.nbn-resolving</groupId>
<artifactId>resolver-core</artifactId>
<version>2.3.0</version>
</dependency><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>
<name>Project URN 2 -- Core Resolving Functionality</name>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>org.nbn-resolving</groupId>
<artifactId>resolver-core</artifactId>
<version>2.3.0</version>
<packaging>jar</packaging>
<description>
Java classes providing resolving functionality for Persistent Identifiers.
Main focus is on National Bibliography Numbers, but some other known systems are also supported.
See the official URN:NBN Resolver http://nbn-resolving.org or http://persid.org
</description>
<url>https://sourceforge.net/projects/metaresolver</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
<comments>A business-friendly Free and Open Source Software (FOSS) license.</comments>
</license>
<license>
<name>The GNU General Public License v.3</name>
<url>http://www.gnu.org/licenses/gpl.html</url>
<distribution>repo</distribution>
<comments>The GNU General Public License is a free, copyleft license for software and other kinds of works.</comments>
</license>
<license>
<name>European Union Public Licence v.1.1</name>
<url>https://joinup.ec.europa.eu/software/page/eupl/licence-eupl</url>
<distribution>repo</distribution>
<comments>A Free and Open Source Software (FOSS) license from the European Community.</comments>
</license>
</licenses>
<organization>
<name>Deutsche Nationalbibliothek / German National Library</name>
<url>http://dnb.de</url>
</organization>
<developers>
<developer>
<id>karaca</id>
<name>Kadir Karaca Koçer</name>
<url>http://sourceforge.net/users/karaca</url>
<organization>Deutsche Nationalbibliothek / German National Library</organization>
<organizationUrl>http://dnb.de</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
<properties>
<picUrl>https://secure.gravatar.com/avatar/15ada2c558ecdd29c092e9b0063806c3.png</picUrl>
</properties>
</developer>
<developer>
<id>juergen_kett</id>
<name>Jürgen Kett</name>
<url>http://sourceforge.net/users/juergen_kett</url>
<organization>Deutsche Nationalbibliothek / German National Library</organization>
<organizationUrl>http://dnb.de</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
<properties>
<picUrl />
</properties>
</developer>
<developer>
<id>t-heck</id>
<name>Timo Heck</name>
<url>http://sourceforge.net/users/t-heck</url>
<organization>Deutsche Nationalbibliothek / German National Library</organization>
<organizationUrl>http://dnb.de</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>+1</timezone>
<properties>
<picUrl />
</properties>
</developer>
<developer>
<id>thomasha09</id>
<name>Thomas Haidlas</name>
<url>http://sourceforge.net/users/thomasha09</url>
<organization>Deutsche Nationalbibliothek / German National Library</organization>
<organizationUrl>http://dnb.de</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>+1</timezone>
<properties>
<picUrl />
</properties>
</developer>
<developer>
<id>dnbkleinm</id>
<name>Marcus Klein</name>
<url>http://sourceforge.net/users/dnbkleinm</url>
<organization>Deutsche Nationalbibliothek / German National Library</organization>
<organizationUrl>http://dnb.de</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>+1</timezone>
<properties>
<picUrl />
</properties>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<scm>
<url>http://svn.code.sf.net/p/metaresolver/code/resolver-core/trunk/</url>
<connection>svn+ssh://svn.code.sf.net/p/metaresolver/code/resolver-core/trunk</connection>
<developerConnection>svn+ssh://svn.code.sf.net/p/metaresolver/code/resolver-core/trunk</developerConnection>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<name>Sonatype OSS Maven Repository -- Releases</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype OSS Maven Repository -- Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<uniqueVersion>true</uniqueVersion>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.15</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<show>public</show>
<nohelp>true</nohelp>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
<configuration>
<locales>de,en</locales>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.nbn-resolving</groupId>
<artifactId>pidef</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.nbn-resolving</groupId>
<artifactId>common</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>org.nbn-resolving</groupId>
<artifactId>database</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.2.5</version>
</dependency>
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>2.5.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.13</version>
</dependency>
<dependency>
<groupId>com.hp.hpl.jena</groupId>
<artifactId>jena</artifactId>
<version>2.6.4</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.2.4.RELEASE</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>