device-detection
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.51degrees</groupId> <artifactId>device-detection</artifactId> <version>4.5.0-alpha.370</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <artifactId>pipeline.device-detection</artifactId> <groupId>com.51degrees</groupId> <version>4.5.0-alpha.370</version> </parent> <artifactId>device-detection</artifactId> <name>51Degrees :: Device Detection</name> <description>Parse HTTP headers to detect the device type, model, OS, browser, and crawler information. This is an alternative to popular UAParser, DeviceAtlas, and WURFL packages.</description> <url>https://51degrees.com</url> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>device-detection.hash.engine.on-premise</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>device-detection.cloud</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>pipeline-aggregate</artifactId> <version>${pipeline.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- test --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>device-detection.shared</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> </dependencies> </project>