mirror of https://github.com/apache/nifi.git
131 lines
5.5 KiB
XML
131 lines
5.5 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-framework</artifactId>
|
|
<version>2.0.0-M2</version>
|
|
</parent>
|
|
<artifactId>nifi-web</artifactId>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>nifi-web-optimistic-locking</module>
|
|
<module>nifi-custom-ui-utilities</module>
|
|
<module>nifi-web-security</module>
|
|
<module>nifi-web-api</module>
|
|
<module>nifi-web-error</module>
|
|
<module>nifi-web-docs</module>
|
|
<module>nifi-web-content-viewer</module>
|
|
<module>nifi-web-ui</module>
|
|
<module>nifi-jetty</module>
|
|
<module>nifi-web-content-access</module>
|
|
<module>nifi-ui-extension</module>
|
|
</modules>
|
|
|
|
<!-- Only include the new UI if the profile is active -->
|
|
<profiles>
|
|
<profile>
|
|
<id>include-new-ui</id>
|
|
<activation>
|
|
<activeByDefault>false</activeByDefault>
|
|
<property>
|
|
<name>include-new-ui</name>
|
|
</property>
|
|
</activation>
|
|
<modules>
|
|
<module>nifi-web-frontend</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>apply-nifi-web-frontend-rat-config</id>
|
|
<activation>
|
|
<property>
|
|
<name>!include-new-ui</name>
|
|
</property>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.rat</groupId>
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
<configuration>
|
|
<excludes combine.children="append">
|
|
<exclude>nifi-web-frontend/src/main/nifi/coverage/**/*</exclude>
|
|
<exclude>nifi-web-frontend/src/main/nifi/node_modules/**/*</exclude>
|
|
<exclude>nifi-web-frontend/src/main/nifi/src/assets/fonts/**/*</exclude>
|
|
<exclude>nifi-web-frontend/src/main/nifi/.editorconfig</exclude>
|
|
<exclude>nifi-web-frontend/src/main/nifi/README.md</exclude>
|
|
<exclude>nifi-web-frontend/src/main/nifi/proxy.config.mjs</exclude>
|
|
<exclude>nifi-web-frontend/src/main/nifi/.prettierrc</exclude>
|
|
<exclude>nifi-web-frontend/src/main/nifi/src/.eslintrc</exclude>
|
|
<exclude>nifi-web-frontend/target/**/*</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-web-api</artifactId>
|
|
<type>war</type>
|
|
<version>2.0.0-M2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-web-error</artifactId>
|
|
<type>war</type>
|
|
<version>2.0.0-M2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-web-docs</artifactId>
|
|
<type>war</type>
|
|
<version>2.0.0-M2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-web-content-viewer</artifactId>
|
|
<type>war</type>
|
|
<version>2.0.0-M2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-web-ui</artifactId>
|
|
<type>war</type>
|
|
<version>2.0.0-M2</version>
|
|
</dependency>
|
|
<!-- Override commons-beanutils -->
|
|
<dependency>
|
|
<groupId>commons-beanutils</groupId>
|
|
<artifactId>commons-beanutils</artifactId>
|
|
<version>1.9.4</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project>
|