caffinitas-mapper-uuidgen
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.caffinitas.mapper</groupId>
<artifactId>caffinitas-mapper-uuidgen</artifactId>
<version>0.1-beta2</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>
<parent>
<groupId>org.caffinitas.mapper</groupId>
<artifactId>caffinitas-mapper-parent</artifactId>
<version>0.1-beta2</version>
</parent>
<artifactId>caffinitas-mapper-uuidgen</artifactId>
<name>Caffinitas Mapper - Globally unique UUID generator</name>
<description>High throughput globally unique UUID generator</description>
<dependencies>
<dependency>
<groupId>org.caffinitas.mapper</groupId>
<artifactId>caffinitas-mapper-core</artifactId>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.caffinitas.mapper</groupId>
<artifactId>caffinitas-mapper-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<!-- override default Surefire unit test config to use 3 node cluster (required for C* CAS to work) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Xms1g -Xmx1g</argLine>
<excludes>
<exclude>**/*DeveloperTest.java</exclude>
</excludes>
<systemProperties>
<cassandraVersion>${version.cassandra.21}</cassandraVersion>
<nodeCount>3</nodeCount>
</systemProperties>
<reportsDirectory>${project.build.directory}/surefire-reports/v21-3nodes</reportsDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<instructions>
<Bundle-SymbolicName>org.caffinitas.mapper.uuidgen</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
</instructions>
<supportedProjectTypes>
<supportedProjectType>jar</supportedProjectType>
<supportedProjectType>bundle</supportedProjectType>
<supportedProjectType>pom</supportedProjectType>
</supportedProjectTypes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>Apache License Version 2.0</comments>
</license>
</licenses>
</project>