mesakit-examples-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.telenav.mesakit</groupId> <artifactId>mesakit-examples-parent</artifactId> <version>0.9.20</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // © 2011-2022 Telenav, Inc. // Licensed under Apache License, Version 2.0 // ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// --> <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>com.telenav</groupId> <artifactId>telenav-root-superpom</artifactId> <version>1.0.15</version> <relativePath/> </parent> <groupId>com.telenav.mesakit</groupId> <artifactId>mesakit-examples-parent</artifactId> <version>0.9.20</version> <packaging>pom</packaging> <description>Example code that demonstrates how to use MesaKit</description> <properties> <kivakit.version>1.8.3</kivakit.version> </properties> <dependencyManagement> <dependencies> <!-- Dependencies on modules defined in Mesakit --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>mesakit</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> <!-- Pull in libraries defined in Kivakit --> <dependency> <groupId>com.telenav.kivakit</groupId> <artifactId>kivakit</artifactId> <version>${kivakit.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <!-- Licensing --> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <!-- Modules --> <modules> <module>mesakit-examples</module> <module>mesakit-map-examples</module></modules> <!-- Source Code --> <scm> <connection>scm:git:https://github.com/Telenav/mesakit-examples.git</connection> <developerConnection>scm:git:https://github.com/Telenav/mesakit-examples.git</developerConnection> <url>https://Telenav/mesakit.git</url> </scm> <!-- Project --> <url>https://www.mesakit.org</url> <!-- Issue Tracking --> <issueManagement> <system>GitHub</system> <url>https://github.com/Telenav/mesakit/issues</url> </issueManagement> <inceptionYear>2011</inceptionYear> <organization> <name>Telenav</name> <url>https://www.telenav.com</url> </organization> <!-- Contributors --> <developers> <developer> <id>jonathanl</id> <name>Jonathan Locke (Luo Shibo)</name> <email>jonathanl@telenav.com</email> <organization>Telenav</organization> <organizationUrl>https://www.telenav.com/</organizationUrl> <roles> <role>lead</role> <role>administrator</role> </roles> </developer> <developer> <id>haifeng</id> <name>Haifeng Zhu</name> <email>hfzhu@telenav.com</email> <organization>Telenav</organization> <organizationUrl>https://www.telenav.com/</organizationUrl> <roles> <role>developer</role> <role>administrator</role> </roles> </developer> <developer> <id>timboudreau</id> <name>Tim Boudreau</name> <email>tim@timboudreau.com</email> <organization>Telenav</organization> <organizationUrl>https://www.telenav.com/</organizationUrl> <roles> <role>developer</role> <role>administrator</role> </roles> </developer> </developers> </project>