ulidj
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.azam.ulidj</groupId> <artifactId>ulidj</artifactId> <version>1.0.4</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> <groupId>io.azam.ulidj</groupId> <artifactId>ulidj</artifactId> <version>1.0.4</version> <name>ulidj</name> <description>ULID (Universally Unique Lexicographically Sortable Identifier) generator and parser for Java.</description> <url>https://github.com/azam/ulidj</url> <licenses> <license> <name>The MIT License (MIT)</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/azam/ulidj</url> <developerConnection>azam</developerConnection> </scm> <developers> <developer> <id>1</id> <name>azam</name> <email>azamshul@gmail.com</email> <organization>azam.io</organization> <organizationUrl>http://azam.io</organizationUrl> <roles> <role>Geek</role> </roles> <timezone>+9</timezone> </developer> </developers> <issueManagement> <system>GitHub</system> <url>https://github.com/azam/ulidj/issues</url> </issueManagement> <organization> <name>azam</name> <url>http://azam.io</url> </organization> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.lineEnding>LF</project.build.lineEnding> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.0</version> </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-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <!-- Setting this to 7 removes unnamed modules found warnings --> <source>7</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> <!-- Sticking to this version as it is the latest that supports JDK8 --> <version>2.16.0</version> <configuration> <configFile>${project.basedir}/eclipse-java-google-style.xml</configFile> <encoding>${project.build.sourceEncoding}</encoding> <lineEnding>${project.build.lineEnding}</lineEnding> <directories> <directory>${project.build.sourceDirectory}</directory> <directory>${project.build.testSourceDirectory}</directory> </directories> </configuration> <executions> <execution> <id>java-check</id> <goals> <goal>validate</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> <plugin> <groupId>au.com.acegi</groupId> <artifactId>xml-format-maven-plugin</artifactId> <version>3.2.2</version> <configuration> <indentSize>2</indentSize> </configuration> <executions> <execution> <id>xml-check</id> <goals> <goal>xml-check</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> </plugins> </build> <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> <profiles> <profile> <id>release</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <gpg.executable>${env.GPG_EXECUTABLE}</gpg.executable> <gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase> </properties> <build> <plugins> <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>${env.MAVEN_GPG_KEYNAME}</keyname> <!-- Prevent gpg from using pinentry programs --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.6</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>