GithubHelp home page GithubHelp logo

devtonhere / here-artifact-maven-wagon Goto Github PK

View Code? Open in Web Editor NEW

This project forked from heremaps/here-artifact-maven-wagon

0.0 0.0 0.0 77 KB

The HERE platform Maven Wagon plugin provides Java and Scala developers with access to platform artifacts via Maven

License: Apache License 2.0

Java 97.57% Shell 2.43%

here-artifact-maven-wagon's Introduction

Build Status Maven Central License

HERE platform Maven Wagon plugin

Introduction

The HERE platform Maven Wagon plugin provides Java and Scala developers with access to HERE platform artifacts via Maven. It uses your HERE platform credentials to generate tokens so it can pull your Maven project dependencies from the HERE platform.

This way Marketplace and Workspace users may fetch platform schemas. In addition, Marketplace users may fetch the Java / Scala Data Client Library giving them access to data in the HERE Data API.

Go to the HERE Developer portal to learn more about the HERE platform.

To learn more about Maven Wagon visit this page.

Prerequisites

To access libraries and schemas from the HERE platform, you need a HERE Workspace and/or a HERE Marketplace account. If you don’t have an account yet, go to Pricing and Plans to apply for a free trial.

Once you have enabled your account you need to create the credentials and prepare your environment. Workspace users can find corresponding guidance in the documentation for Java and Scala developers. Marketplace users can find instructions in the Marketplace Consumer user guide.

Please note, by default the Maven Wagon plugin uses the credentials.properties file provided in the .here directory in the user home directory. There are two options to override the path:

  • The first option is the system property hereCredentialsFile, the property should be added to the maven command the following way -DhereCredentialsFile=/full/path/to/credentials.properties.
  • The second option is the environment variable HERE_CREDENTIALS_FILE. The variable should contain the full file path to the credentials.properties file to be used. The variable is taken into account only if there is no system property provided.

How to use it?

This Maven Wagon plugin is published on Maven Central so you can conveniently use it from your Maven POM.

For example, to fetch the HERE Map Content - Topology Geometry - Protocol Buffers schema and the related Java and Scala bindings set the following dependencies:

<dependencies>
  <dependency>
    <groupId>com.here.schema.rib</groupId>
    <artifactId>topology-geometry_v2_java</artifactId>
    <version>${topology-geometry.library.version}</version>
    <type>jar</type>
  </dependency>
  <dependency>
    <groupId>com.here.schema.rib</groupId>
    <artifactId>topology-geometry_v2_proto</artifactId>
    <version>${topology-geometry.library.version}</version>
    <type>zip</type>
  </dependency>
  <dependency>
    <groupId>com.here.schema.rib</groupId>
    <artifactId>topology-geometry_v2_scala</artifactId>
    <version>${topology-geometry.library.version}</version>
    <type>jar</type>
  </dependency>
</dependencies>

<repositories>
  <!-- The reference to the HERE repository with schemas -->
  <repository>
    <id>HERE_PLATFORM_ARTIFACT</id>
    <layout>default</layout>
    <url>here+artifact-service://artifact-service</url>
  </repository>
</repositories>

<build>
  <extensions>
    <extension>
      <groupId>com.here.platform.artifact</groupId>
      <artifactId>artifact-wagon</artifactId>
      <version>${artifact.wagon.version}</version>
    </extension>
  </extensions>
</build>

As a Marketplace user you can add this dependency for fetching the Java / Scala Data Client Library:

<dependencies>
  <dependency>
    <groupId>com.here.platform.data.client</groupId>
    <artifactId>data-client_2.11</artifactId>
    <version>${data.client.library.version}</version>
  </dependency>
</dependencies>

<repositories>
  <!-- The reference to the HERE repository with schemas -->
  <repository>
    <id>HERE_PLATFORM_ARTIFACT</id>
    <layout>default</layout>
    <url>here+artifact-service://artifact-service</url>
  </repository>
</repositories>

<build>
  <extensions>
    <extension>
      <groupId>com.here.platform.artifact</groupId>
      <artifactId>artifact-wagon</artifactId>
      <version>${artifact.wagon.version}</version>
    </extension>
  </extensions>
</build>

here+artifact-service://artifact-service is placeholder URL which will be replaced by plugin dynamically based on your credentials. The latest versions of the Data Client Library and Schemas can be found in SDK documentation

Proxy Setup

To enable Maven and the HERE Maven Wagon Plugin to work behind a corporate proxy, you need to add the following proxy settings in the Maven settings file (settings.xml), which is normally located at ~/.m2/settings.xml:

<settings>
  <proxies>
    <proxy>
      <id>proxy1</id>
      <active>true</active>
      <protocol>https</protocol>
      <host>{enter your proxy host here}</host>
      <port>{enter your proxy port here}</port>
      <username>{enter your proxy username here}</username>
      <password>{enter your proxy password here}</password>
    </proxy>
    <proxy>
      <id>proxy2</id>
      <active>true</active>
      <protocol>here+https</protocol>
      <host>{enter your proxy host here}</host>
      <port>{enter your proxy port here}</port>
      <username>{enter your proxy username here}</username>
      <password>{enter your proxy password here}</password>
    </proxy>
    <proxy>
      <id>proxy3</id>
      <active>true</active>
      <protocol>here+artifact-service</protocol>
      <host>{enter your proxy host here}</host>
      <port>{enter your proxy port here}</port>
      <username>{enter your proxy username here}</username>
      <password>{enter your proxy password here}</password>
    </proxy>
  </proxies>
</settings>

License

Copyright (C) 2018-2020 HERE Europe B.V.

Unless otherwise noted in LICENSE files for specific files or directories, the LICENSE in the root applies to all content in this repository.

here-artifact-maven-wagon's People

Contributors

adrian-shyshkovskyi-here avatar dependabot[bot] avatar dmitriy-abramov avatar tsteenbe avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.