2016-07-06 16:56:08 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
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.
|
|
|
|
-->
|
2019-05-28 20:14:09 -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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-07-06 16:56:08 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2016-07-06 16:56:08 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>nifi-toolkit</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
2016-08-15 23:18:47 -04:00
|
|
|
<module>nifi-toolkit-encrypt-config</module>
|
2017-03-22 13:08:30 -04:00
|
|
|
<module>nifi-toolkit-flowfile-repo</module>
|
2016-07-06 16:56:08 -04:00
|
|
|
<module>nifi-toolkit-assembly</module>
|
2018-01-22 10:31:15 -05:00
|
|
|
<module>nifi-toolkit-cli</module>
|
2017-05-31 00:08:19 -04:00
|
|
|
<module>nifi-toolkit-api</module>
|
2016-07-06 16:56:08 -04:00
|
|
|
</modules>
|
2016-08-15 23:18:47 -04:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2018-10-08 12:58:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty</artifactId>
|
2021-10-27 21:52:59 -04:00
|
|
|
<version>${netty.3.version}</version>
|
2018-10-08 12:58:20 -04:00
|
|
|
</dependency>
|
2016-08-15 23:18:47 -04:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2016-11-16 17:41:12 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
2021-10-04 21:10:20 -04:00
|
|
|
<artifactId>slf4j-simple</artifactId>
|
2016-11-16 17:41:12 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-07-06 16:56:08 -04:00
|
|
|
</project>
|