identifiers
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.identifiers</groupId>
<artifactId>identifiers</artifactId>
<version>0.1.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<!-- ********************************************** -->
<!-- **************** PROJECT INFO **************** -->
<!-- ********************************************** -->
<groupId>io.identifiers</groupId>
<artifactId>identifiers</artifactId>
<version>0.1.0</version>
<packaging>bundle</packaging>
<name>Identifiers java implementation</name>
<description>A java implementation of the Identifiers specification.</description>
<url>https://github.com/identifiers/identifiers-java</url>
<inceptionYear>2018</inceptionYear>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- ********************************************** -->
<!-- ************ RESOURCES AND SERVICES ********** -->
<!-- ********************************************** -->
<scm>
<url>https://github.com/identifiers/identifiers-java</url>
<connection>scm:git:https://github.com/identifiers/identifiers-java.git</connection>
<developerConnection>scm:git:https://github.com/identifiers/identifiers-java.git</developerConnection>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/identifiers/identifiers-java/issues</url>
</issueManagement>
<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/identifiers/identifiers-java</url>
<notifiers/>
</ciManagement>
<!-- ********************************************** -->
<!-- *********** ORGANIZATION AND MEMBERS ********* -->
<!-- ********************************************** -->
<organization>
<name>Identifiers</name>
<url>https://github.com/identifiers</url>
</organization>
<developers>
<developer>
<id>mattbishop</id>
<name>Matt Bishop</name>
<email>matt@thebishops.org</email>
<url>https://github.com/mattbishop</url>
<organization>Identifiers</organization>
<organizationUrl>https://github.com/Identifiers</organizationUrl>
<roles>
<role>Developer</role>
</roles>
<timezone>-8</timezone>
</developer>
</developers>
<!-- ********************************************** -->
<!-- **************** PROPERTIES ****************** -->
<!-- ********************************************** -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- ============================================== -->
<!-- =========== DEPENDENCIES VERSIONS ============ -->
<!-- ============================================== -->
<!--
msgpack 0.8.13 has OSGi headers, thereafter does not. Consider updating when
this is fixed: https://github.com/msgpack/msgpack-java/issues/484
-->
<msgpack-core.version>0.8.13</msgpack-core.version>
<!-- =========== UNIT-TESTING ============ -->
<assertj-core.version>3.11.1</assertj-core.version>
<javafaker.version>0.16</javafaker.version>
<jmh-core.version>1.21</jmh-core.version>
<jmh-generator-annprocess.version>1.21</jmh-generator-annprocess.version>
<junit.jupiter.version>5.3.2</junit.jupiter.version>
<junit.platform.version>1.3.2</junit.platform.version>
<minimal-json.version>0.9.5</minimal-json.version>
<!-- =========== MAVEN PLUGINS ============ -->
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
<jacoco-maven-plugin.version>0.8.2</jacoco-maven-plugin.version>
<maven-bundle-plugin.version>4.1.0</maven-bundle-plugin.version>
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<maven-javadoc-plugin.version>3.0.1</maven-javadoc-plugin.version>
<maven-pmd-plugin.version>3.11.0</maven-pmd-plugin.version>
<maven-scm-plugin.version>1.11.1</maven-scm-plugin.version>
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
<maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version>
<spotbugs-maven-plugin.version>3.1.10</spotbugs-maven-plugin.version>
</properties>
<!-- ********************************************** -->
<!-- *************** DEPENDENCIES ***************** -->
<!-- ********************************************** -->
<dependencies>
<dependency>
<groupId>org.msgpack</groupId>
<artifactId>msgpack-core</artifactId>
<version>${msgpack-core.version}</version>
</dependency>
<!-- ============================================== -->
<!-- ======= TEST ENVIRONMENT DEPENDENCIES ======== -->
<!-- ============================================== -->
<dependency>
<groupId>com.eclipsesource.minimal-json</groupId>
<artifactId>minimal-json</artifactId>
<version>${minimal-json.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-runner</artifactId>
<version>${junit.platform.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-console-standalone</artifactId>
<version>${junit.platform.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj-core.version}</version>
<scope>test</scope>
</dependency>
<!-- ======================================= -->
<!-- ======= BENCHMARK DEPENDENCIES ======== -->
<!-- ======================================= -->
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>${jmh-core.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>${jmh-generator-annprocess.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.javafaker</groupId>
<artifactId>javafaker</artifactId>
<version>${javafaker.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- ********************************************** -->
<!-- ******************* BUILD ******************** -->
<!-- ********************************************** -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<encoding>UTF-8</encoding>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${maven-bundle-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<obrRepository>NONE</obrRepository>
<instructions>
<Export-Package>io.identifiers</Export-Package>
<Private-Package>io.identifiers.*</Private-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>${coveralls-maven-plugin.version}</version>
</plugin>
</plugins>
</build>
<!-- ********************************************** -->
<!-- ***************** PROFILES ******************* -->
<!-- ********************************************** -->
<profiles>
<profile>
<!-- mvn -Prelease deploy -->
<id>release</id>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</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>${maven-gpg-plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- ********************************************** -->
<!-- ****************** REPORTS ******************* -->
<!-- ********************************************** -->
<reporting>
<plugins>
<plugin>
<!-- SpotBugs -->
<!-- Checks for patterns which are prone to errors -->
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>3.1.3</version>
<configuration>
<!-- Exclusion patterns -->
<excludeFilterFile>${project.basedir}/src/config/spotbugs/spotbugs-exclude.xml</excludeFilterFile>
</configuration>
</plugin>
<plugin>
<!-- PMD -->
<!-- Checks that the code complies with a series of code quality rules -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>${maven-pmd-plugin.version}</version>
<configuration>
<rulesets>
<!-- The customized rules file -->
<ruleset>${project.basedir}/src/config/pmd/pmd-rules.xml</ruleset>
</rulesets>
</configuration>
</plugin>
</plugins>
</reporting>
</project>