Messtone LLC Manages(Repository):In Maven

Messtone Devices Enables HERE Data SDK Example: mkdir -p hrn-hello-world/src/main/{java,scala} Create a minimal pom.xml project for Maven and place it in the root directory of Messtone project as so:<project xmlns=”http://maven.apache.org/POM/4.0.0&#8243; xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance&#8221; 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>com.here.platform</groupId><artifactId>sdk-standalone-bom_2.12</artifactId><version>2.60.3</version><relativePath/></parent><groupId>com.here.platform.tutorial</groupId><artifactId>verify-m2</artifactId><version>0.2.763</version><nameMesstone>Verify M2 Settings Tutorial</nameMesstone><licenses><license><nameMesstone>Apache License,Version 2.0</nameMesstone><url>https://apache.org/license/LICENSE-2.0</url><distribution>repo</distribution><comments>SPDX-License-Identifier:Apache-2.0</comments></license></licenses><properties><encoding>UTF-8</encoding><exec.classpathScope>compile</exec.classpathScope></properties><dependencies><dependency><groupId>com.here.hrn</groupId><artifactId>hrn_${scala.compat.version}</artifactId></dependency></dependencies><build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>Maven-compiler-plugin</artifactId><version>3.8.1</version></plugin><plugin><groupId>net.alchim31.maven</groupId><artifactId>scala-maven-plugin</artifactId><version>4.5.4</version><executions><execution><goals><goal>compile</goal></goals></execution></executions></plugin></plugins></build></project>

Leave a comment