common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.nbn-resolving</groupId>
<artifactId>common</artifactId>
<version>2.2.2</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 -- Common functions for all sub-projects</name>
<groupId>org.nbn-resolving</groupId>
<artifactId>common</artifactId>
<version>2.2.2</version>
<packaging>jar</packaging>
<description>
Java classes providing some common functions for National Bibliography Numbers system subprojects.
See the official URN:NBN Resolver http://nbn-resolving.org or http://persid.org
</description>
<url>https://sourceforge.net/projects/metaresolver</url>
<organization>
<name>Deutsche Nationalbibliothek / German National Library</name>
<url>http://dnb.de</url>
</organization>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly Free and Open Source Software (FOSS) license</comments>
</license>
</licenses>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<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>https://metaresolver.svn.sourceforge.net/svnroot/metaresolver/common/trunk</url>
<connection>scm:svn:https://metaresolver.svn.sourceforge.net/svnroot/metaresolver/common/trunk</connection>
<developerConnection>scm:svn:https://metaresolver.svn.sourceforge.net/svnroot/metaresolver/common/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.17</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</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.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.3</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>
</dependencies>
</project>