mirror of https://github.com/apache/nifi.git
207 lines
7.8 KiB
XML
207 lines
7.8 KiB
XML
|
<?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.
|
||
|
-->
|
||
|
<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">
|
||
|
<parent>
|
||
|
<artifactId>nifi-system-tests</artifactId>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<version>1.11.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>nifi-system-test-suite</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<finalName>nifi-lib</finalName>
|
||
|
<attach>false</attach>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>make shared resource</id>
|
||
|
<goals>
|
||
|
<goal>single</goal>
|
||
|
</goals>
|
||
|
<phase>generate-test-resources</phase>
|
||
|
<configuration>
|
||
|
<archiverConfig>
|
||
|
<defaultDirectoryMode>0775</defaultDirectoryMode>
|
||
|
<directoryMode>0775</directoryMode>
|
||
|
<fileMode>0664</fileMode>
|
||
|
</archiverConfig>
|
||
|
<descriptors>
|
||
|
<descriptor>src/test/assembly/dependencies.xml</descriptor>
|
||
|
</descriptors>
|
||
|
<tarLongFileMode>posix</tarLongFileMode>
|
||
|
<formats>
|
||
|
<format>dir</format>
|
||
|
</formats>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-client-dto</artifactId>
|
||
|
<version>1.11.0-SNAPSHOT</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-toolkit-cli</artifactId>
|
||
|
<version>1.11.0-SNAPSHOT</version>
|
||
|
<scope>test</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-log4j12</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.inject</groupId>
|
||
|
<artifactId>jersey-hk2</artifactId>
|
||
|
<version>2.27</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-simple</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency> <!-- handling this explicitly Must be in root lib -->
|
||
|
<groupId>javax.servlet</groupId>
|
||
|
<artifactId>javax.servlet-api</artifactId>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency> <!-- handling this explicitly Must be in root lib -->
|
||
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
||
|
<artifactId>jetty-schemas</artifactId>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>jcl-over-slf4j</artifactId>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>jul-to-slf4j</artifactId>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-api</artifactId>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ch.qos.logback</groupId>
|
||
|
<artifactId>logback-classic</artifactId>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-api</artifactId>
|
||
|
<version>1.11.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-framework-api</artifactId>
|
||
|
<version>1.11.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-runtime</artifactId>
|
||
|
<version>1.11.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-bootstrap</artifactId>
|
||
|
<version>1.11.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-jetty-bundle</artifactId>
|
||
|
<version>1.11.0-SNAPSHOT</version>
|
||
|
<type>nar</type>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-framework-nar</artifactId>
|
||
|
<version>1.11.0-SNAPSHOT</version>
|
||
|
<type>nar</type>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-provenance-repository-nar</artifactId>
|
||
|
<version>1.11.0-SNAPSHOT</version>
|
||
|
<type>nar</type>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-standard-services-api-nar</artifactId>
|
||
|
<version>1.11.0-SNAPSHOT</version>
|
||
|
<type>nar</type>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.nifi</groupId>
|
||
|
<artifactId>nifi-system-test-extensions-nar</artifactId>
|
||
|
<version>1.11.0-SNAPSHOT</version>
|
||
|
<type>nar</type>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- dependencies for jaxb/activation/annotation for running NiFi on Java 11 -->
|
||
|
<!-- TODO: remove these once minimum Java version is 11 -->
|
||
|
<dependency>
|
||
|
<groupId>javax.xml.bind</groupId>
|
||
|
<artifactId>jaxb-api</artifactId>
|
||
|
<version>2.3.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.sun.xml.bind</groupId>
|
||
|
<artifactId>jaxb-impl</artifactId>
|
||
|
<version>2.3.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.sun.xml.bind</groupId>
|
||
|
<artifactId>jaxb-core</artifactId>
|
||
|
<version>2.3.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.annotation</groupId>
|
||
|
<artifactId>javax.annotation-api</artifactId>
|
||
|
<version>1.3.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.activation</groupId>
|
||
|
<artifactId>javax.activation-api</artifactId>
|
||
|
<version>1.2.0</version>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|