2015-08-03 23:32:48 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2015-09-13 19:55:12 -04:00
|
|
|
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
|
2016-07-31 15:14:22 -04:00
|
|
|
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-31 15:14:22 -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-31 15:14:22 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>nifi-bootstrap</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2015-09-13 19:55:12 -04:00
|
|
|
|
2016-07-31 15:14:22 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-api</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2016-07-31 15:14:22 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2016-11-17 17:09:49 -05:00
|
|
|
<artifactId>nifi-utils</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2016-07-31 15:14:22 -04:00
|
|
|
</dependency>
|
2017-03-21 22:50:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-security-utils</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2022-04-12 16:32:27 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-xml-processing</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2017-03-21 22:50:06 -04:00
|
|
|
</dependency>
|
2021-02-27 10:17:56 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-flow-encryptor</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2021-02-27 10:17:56 -05:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2021-05-11 13:18:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-single-user-utils</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2021-05-11 13:18:08 -04:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2022-05-18 11:38:36 -04:00
|
|
|
<!-- Jakarta Mail 1 required for compatibility with Jakarta Activation 1 used with JAXB 2 -->
|
2016-07-31 15:14:22 -04:00
|
|
|
<dependency>
|
2022-01-19 16:10:47 -05:00
|
|
|
<groupId>jakarta.mail</groupId>
|
|
|
|
<artifactId>jakarta.mail-api</artifactId>
|
2022-05-18 11:38:36 -04:00
|
|
|
<version>1.6.7</version>
|
2022-01-19 16:10:47 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
|
<artifactId>jakarta.mail</artifactId>
|
2022-05-18 11:38:36 -04:00
|
|
|
<version>1.6.7</version>
|
2016-07-31 15:14:22 -04:00
|
|
|
</dependency>
|
2022-05-12 14:12:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.activation</groupId>
|
|
|
|
<artifactId>jakarta.activation-api</artifactId>
|
2022-05-18 11:38:36 -04:00
|
|
|
<version>1.2.2</version>
|
2022-05-12 14:12:08 -04:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2022-05-13 09:26:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.activation</groupId>
|
|
|
|
<artifactId>jakarta.activation</artifactId>
|
2022-05-18 11:38:36 -04:00
|
|
|
<version>1.2.2</version>
|
2022-05-13 09:26:20 -04:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2016-07-31 15:14:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-expression-language</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2016-07-31 15:14:22 -04:00
|
|
|
</dependency>
|
2022-09-29 11:15:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
2017-03-21 22:50:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>mockwebserver</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-11-02 09:51:47 -04:00
|
|
|
<!-- This needs to be here because it is relied upon by the nifi-runtime which starts NiFi. It uses this bootstrap module
|
|
|
|
and the libs that get laid down in lib/bootstrap to create a child classloader with these bits in it -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-properties-loader</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2016-11-02 09:51:47 -04:00
|
|
|
</dependency>
|
2022-01-19 16:10:47 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mock</artifactId>
|
2023-02-09 17:32:53 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2022-01-19 16:10:47 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-07-31 15:14:22 -04:00
|
|
|
</dependencies>
|
2014-12-09 08:48:07 -05:00
|
|
|
</project>
|