mirror of
https://github.com/eclipse/upm.git
synced 2025-03-15 13:07:40 +03:00

* Updated pom file generation: Generate pom files after all sensor library targets have been created - allows for dependencies * Changes for compiling on Android * Check for mraa build options: Look at symbols in mraa library to determine UPM build options (example: mraa_iio_init, mraa_firmata_init) * Add per target summary for C/C++/java/nodejs/python * Added hierarchy to fti include directory... old: #include "upm_voltage.h" new: #include "fti/upm_voltage.h" * Removed unimplemented methods from mpu9150 library and java example * Add utilities-c target for all c examples. Most of the C examples rely on the upm_delay methods. Add a dependency on the utilities-c target for all c examples. * Updated the examples/CMakeLists.txt to add dependencies passed via TARGETS to the target name parsed from the example name. Also updated the interface example names to start with 'interfaces'. * Updated src/examples/CMakeLists.txt to ALWAYS remove examples from the example_src_list (moved this from end of function to beginning). Signed-off-by: Noel Eck <noel.eck@intel.com>
33 lines
1.4 KiB
XML
33 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
<groupId>@pom_groupId@</groupId>
|
|
<artifactId>upm_@target@</artifactId>
|
|
<version>@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@</version>
|
|
<packaging>@pom_packaging@</packaging>
|
|
<name>@target@</name>
|
|
<description>@libdescription@</description>
|
|
<url>http://upm.mraa.io</url>
|
|
<licenses>
|
|
<license>
|
|
<name>MIT License</name>
|
|
<url>https://github.com/intel-iot-devkit/upm/blob/master/LICENSE</url>
|
|
</license>
|
|
</licenses>
|
|
<developers>
|
|
<developer>
|
|
<name>Upm contributors https://github.com/intel-iot-devkit/upm/graphs/contributors</name>
|
|
<email>mraa@lists.01.org</email>
|
|
<organization>Intel IoT Developer kit</organization>
|
|
<organizationUrl>https://github.com/intel-iot-devkit</organizationUrl>
|
|
</developer>
|
|
</developers>
|
|
<scm>
|
|
<connection>scm:git:git://github.com/intel-iot-devkit/upm.git</connection>
|
|
<developerConnection>scm:git:ssh://github.com:intel-iot-devkit/upm.git</developerConnection>
|
|
<url>https://github.com/intel-iot-devkit/upm/tree/master</url>
|
|
</scm>
|
|
<dependencies>@pom_dependencies@
|
|
</dependencies>
|
|
</project>
|