lbs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.tomtom.speedtools</groupId> <artifactId>lbs</artifactId> <version>3.4.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (C) 2012-2021, TomTom (http://tomtom.com). ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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> <!-- Use the speedtools shared pom. --> <parent> <groupId>com.tomtom.speedtools</groupId> <artifactId>speedtools</artifactId> <version>3.4.4</version> </parent> <artifactId>lbs</artifactId> <packaging>jar</packaging> <name>SpeedTools LBS Services</name> <!-- Don't add a description if you want the project not to be picked up by the maven-mailinglist-plugin (if the plugin is enabled). --> <description> Connectors to web services. </description> <dependencies> <!-- Project dependencies. --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>core</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>geo</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>guice</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>json</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>testutils</artifactId> </dependency> <!-- External dependencies. --> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-actor_2.13</artifactId> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-joda</artifactId> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </dependency> </dependencies> </project>