uuid
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.eaio.uuid</groupId> <artifactId>uuid</artifactId> <version>3.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> <groupId>com.eaio.uuid</groupId> <artifactId>uuid</artifactId> <packaging>jar</packaging> <version>3.2</version> <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://johannburkard.de/software/uuid/</url> <inceptionYear>2003</inceptionYear> <issueManagement> <url>http://johannburkard.de/contact/</url> </issueManagement> <scm> <connection>scm:svn:svn://johannburkard.de/${project.groupId}/trunk</connection> <developerConnection>scm:svn:svn://johannburkard.de/${project.groupId}/trunk</developerConnection> <url>scm:svn:svn://johannburkard.de/${project.groupId}/trunk</url> </scm> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <developers> <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> </developer> </developers> <organization> <name>Johann Burkard</name> <url>http://johannburkard.de</url> </organization> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.1</version> <configuration> <encoding>UTF-8</encoding> <source>1.5</source> <target>1.5</target> <compilerArgument>-g</compilerArgument> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.4</version> <configuration> <file>target/${artifactId}-${version}.jar</file> <url>file://${user.home}/maven2</url> <groupId>${groupId}</groupId> <artifactId>${artifactId}</artifactId> <version>${version}</version> <packaging>jar</packaging> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changelog-plugin</artifactId> <configuration> <type>range</type> <range>365</range> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> </plugin> </plugins> </reporting> <distributionManagement> <site> </site> </distributionManagement> </project>