uuid
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.stephenc.eaio-uuid</groupId> <artifactId>uuid</artifactId> <version>3.4.2</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <groupId>com.github.stephenc.eaio-uuid</groupId> <artifactId>uuid</artifactId> <version>3.4.2</version> <packaging>bundle</packaging> <name>UUID</name> <description>An implementation of the UUIDs and GUIDs specification in Java. UUIDs are 128 bit long identifiers that are guaranteed to be unique.</description> <url>http://stephenc.github.com/eaio-uuid</url> <inceptionYear>2003</inceptionYear> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>stephenc</id> <name>Stephen Connolly</name> <roles> <role>packager</role> </roles> </developer> <developer> <id>johann</id> <name>Johann Burkard</name> <email>johann@johannburkard.de</email> <url>http://johannburkard.de</url> <organization>Johann Burkard</organization> <organizationUrl>http://johannburkard.de</organizationUrl> <roles> <role>Developer</role> </roles> </developer> </developers> <prerequisites> <maven>2.2.1</maven> </prerequisites> <scm> <connection>scm:git:git://github.com/stephenc/eaio-uuid.git</connection> <developerConnection>scm:git:git@github.com:stephenc/eaio-uuid.git</developerConnection> <url>http://github.com/stephenc/eaio-uuid/tree/master/</url> <tag>uuid-3.4.2</tag> </scm> <issueManagement> <system>github</system> <url>http://github.com/stephenc/eaio-uuid/issues</url> </issueManagement> <distributionManagement> <site> <id>github.com</id> <url>gitsite:git@github.com/stephenc/eaio-uuid.git</url> </site> </distributionManagement> <properties> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.build.outputEncoding>UTF-8</project.build.outputEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.github.stephenc.eaio-grabbag</groupId> <artifactId>grabbag</artifactId> <version>1.8.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.7.1</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.0</version> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.5.0</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> <compilerArgument>-g</compilerArgument> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Private-Package>com.eaio.util.lang*</Private-Package> <Export-Package>com.eaio.uuid.*</Export-Package> <Embed-Dependency>*;scope=provided;inline=com/eaio/util/Resource.class</Embed-Dependency> </instructions> </configuration> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.10.0</version> </extension> <extension> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-manager-plexus</artifactId> <version>1.10.0</version> </extension> <extension> <groupId>com.github.stephenc.wagon</groupId> <artifactId>wagon-gitsite</artifactId> <version>0.5</version> </extension> </extensions> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.8.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changelog-plugin</artifactId> <version>2.3</version> </plugin> <!-- bundle plugin not likey cobertura--> <!--plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> </plugin--> </plugins> </reporting> </project>