nifi-sensor-stream-cutter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>nl.basjes.iot</groupId> <artifactId>nifi-sensor-stream-cutter</artifactId> <version>0.6</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Dutch Smart Meter Requirements (DSMR) Toolkit ~ Copyright (C) 2019-2021 Niels Basjes ~ ~ 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 ~ ~ https://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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>nl.basjes.iot</groupId> <artifactId>nifi-sensor-stream-cutter-bundle</artifactId> <version>0.6</version> </parent> <artifactId>nifi-sensor-stream-cutter</artifactId> <version>0.6</version> <packaging>nar</packaging> <name>DSMR : UDF : Nifi : Sensor Stream Cutter : Nar</name> <description>A toolkit for reading and parsing the data conforming to the Dutch Smart Meter Requirements (DSMR).</description> <url>https://dsmr.basjes.nl</url> <properties> <maven.javadoc.skip>true</maven.javadoc.skip> <source.skip>true</source.skip> </properties> <dependencies> <dependency> <groupId>nl.basjes.iot</groupId> <artifactId>nifi-sensor-stream-cutter-processors</artifactId> <version>0.6</version> </dependency> </dependencies> <build> <plugins> <!-- Makes buildRevision and buildBranch available to the NAR Plugin so they can be populated in the MANIFEST --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>1.4</version> <inherited>true</inherited> <executions> <execution> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> </executions> <configuration> <doCheck>false</doCheck> <doUpdate>false</doUpdate> <shortRevisionLength>7</shortRevisionLength> <getRevisionOnlyOnce>true</getRevisionOnlyOnce> <revisionOnScmFailure /> <buildNumberPropertyName>buildRevision</buildNumberPropertyName> <scmBranchPropertyName>buildBranch</scmBranchPropertyName> </configuration> </plugin> <plugin> <groupId>org.apache.nifi</groupId> <artifactId>nifi-nar-maven-plugin</artifactId> <version>1.3.2</version> <extensions>true</extensions> </plugin> </plugins> </build> </project>