2016-12-29 15:36:04 -05: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-12-29 15:36:04 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi</artifactId>
|
2020-08-18 17:48:02 -04:00
|
|
|
<version>1.13.0-SNAPSHOT</version>
|
2016-12-29 15:36:04 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-docker</artifactId>
|
2020-08-18 17:48:02 -04:00
|
|
|
<version>1.13.0-SNAPSHOT</version>
|
2016-12-29 15:36:04 -05:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<properties>
|
2017-09-11 12:59:28 -04:00
|
|
|
<nifi.version>${project.version}</nifi.version>
|
2016-12-29 15:36:04 -05:00
|
|
|
</properties>
|
|
|
|
|
2017-09-11 12:59:28 -04:00
|
|
|
<modules>
|
|
|
|
<module>dockermaven</module>
|
2019-04-08 18:16:52 -04:00
|
|
|
<module>dockermaven-stateless</module>
|
2018-05-29 07:27:45 -04:00
|
|
|
<module>dockerhub</module>
|
2017-09-11 12:59:28 -04:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.spotify</groupId>
|
|
|
|
<artifactId>dockerfile-maven-plugin</artifactId>
|
|
|
|
<version>1.3.5</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default</id>
|
|
|
|
<goals>
|
|
|
|
<goal>build</goal>
|
|
|
|
<goal>push</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<tag>${nifi.version}</tag>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
2016-12-29 15:36:04 -05:00
|
|
|
|
|
|
|
</project>
|