2016-04-26 11:35:54 -04:00
|
|
|
<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">
|
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You 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
|
|
|
|
http://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.
|
|
|
|
-->
|
2016-05-25 16:37:48 -04:00
|
|
|
|
2016-04-26 11:35:54 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mqtt-bundle</artifactId>
|
2018-01-12 15:15:32 -05:00
|
|
|
<version>1.6.0-SNAPSHOT</version>
|
2016-04-26 11:35:54 -04:00
|
|
|
</parent>
|
2016-05-25 16:37:48 -04:00
|
|
|
|
2016-04-26 11:35:54 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>nifi-mqtt-processors</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2016-05-25 16:37:48 -04:00
|
|
|
|
2016-04-26 11:35:54 -04:00
|
|
|
<dependencies>
|
2016-05-25 16:37:48 -04:00
|
|
|
|
|
|
|
<!-- NiFi dependencies -->
|
2016-04-26 11:35:54 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-processor-utils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2016-05-25 16:37:48 -04:00
|
|
|
<artifactId>nifi-ssl-context-service-api</artifactId>
|
2016-04-26 11:35:54 -04:00
|
|
|
</dependency>
|
2016-05-25 16:37:48 -04:00
|
|
|
|
|
|
|
<!-- External dependencies -->
|
2016-04-26 11:35:54 -04:00
|
|
|
<dependency>
|
2016-06-09 14:00:57 -04:00
|
|
|
<groupId>commons-io</groupId>
|
2016-04-26 11:35:54 -04:00
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>1.3.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.paho</groupId>
|
|
|
|
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
|
|
|
|
<version>1.0.2</version>
|
|
|
|
</dependency>
|
2016-05-25 16:37:48 -04:00
|
|
|
|
|
|
|
<!-- Test dependencies -->
|
2016-04-26 11:35:54 -04:00
|
|
|
<dependency>
|
2016-05-24 10:05:07 -04:00
|
|
|
<groupId>io.moquette</groupId>
|
|
|
|
<artifactId>moquette-broker</artifactId>
|
|
|
|
<version>0.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-ssl-context-service</artifactId>
|
|
|
|
<scope>test</scope>
|
2016-04-26 11:35:54 -04:00
|
|
|
</dependency>
|
2016-05-25 16:37:48 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mock</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-04-26 11:35:54 -04:00
|
|
|
</dependencies>
|
2016-05-24 10:05:07 -04:00
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/integration/TestConsumeMQTT.java</exclude>
|
|
|
|
<exclude>**/integration/TestConsumeMqttSSL.java</exclude>
|
|
|
|
<exclude>**/integration/TestPublishAndSubscribeMqttIntegration.java</exclude>
|
|
|
|
<exclude>**/integration/TestPublishMQTT.java</exclude>
|
|
|
|
<exclude>**/integration/TestPublishMqttSSL.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-04-26 11:35:54 -04:00
|
|
|
</project>
|