Repository: incubator-nifi Updated Branches: refs/heads/NIFI221 [created] d377a97ab
http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/d377a97a/nar-bundles/standard-services/http-context-map-bundle/pom.xml ---------------------------------------------------------------------- diff --git a/nar-bundles/standard-services/http-context-map-bundle/pom.xml b/nar-bundles/standard-services/http-context-map-bundle/pom.xml new file mode 100644 index 0000000..6e24012 --- /dev/null +++ b/nar-bundles/standard-services/http-context-map-bundle/pom.xml @@ -0,0 +1,34 @@ +<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"> + <!-- + 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. + --> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.nifi</groupId> + <artifactId>standard-services-parent</artifactId> + <version>0.0.1-SNAPSHOT</version> + </parent> + + <artifactId>http-context-map-bundle</artifactId> + <version>0.0.1-SNAPSHOT</version> + <packaging>pom</packaging> + + <name>HTTP Context Map Bundle</name> + + <modules> + <module>http-context-map</module> + <module>http-context-map-nar</module> + </modules> + +</project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/d377a97a/nar-bundles/standard-services/pom.xml ---------------------------------------------------------------------- diff --git a/nar-bundles/standard-services/pom.xml b/nar-bundles/standard-services/pom.xml index 047d642..9ef12e0 100644 --- a/nar-bundles/standard-services/pom.xml +++ b/nar-bundles/standard-services/pom.xml @@ -34,6 +34,8 @@ <module>ssl-context-bundle</module> <module>ssl-context-service-api</module> <module>standard-services-api-nar</module> + <module>http-context-map-api</module> + <module>http-context-map-bundle</module> </modules> </project> http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/d377a97a/nar-bundles/standard-services/standard-services-api-nar/pom.xml ---------------------------------------------------------------------- diff --git a/nar-bundles/standard-services/standard-services-api-nar/pom.xml b/nar-bundles/standard-services/standard-services-api-nar/pom.xml index 18cb7c8..c8a5c16 100644 --- a/nar-bundles/standard-services/standard-services-api-nar/pom.xml +++ b/nar-bundles/standard-services/standard-services-api-nar/pom.xml @@ -41,5 +41,10 @@ <artifactId>load-distribution-service-api</artifactId> <scope>compile</scope> </dependency> + <dependency> + <groupId>org.apache.nifi</groupId> + <artifactId>http-context-map-api</artifactId> + <scope>compile</scope> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/d377a97a/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 9ff1e83..6771944 100644 --- a/pom.xml +++ b/pom.xml @@ -770,7 +770,13 @@ <dependency> <groupId>org.apache.nifi</groupId> <artifactId>kafka-nar</artifactId> - <version>${project.version}</version> + <version>0.0.1-SNAPSHOT</version> + <type>nar</type> + </dependency> + <dependency> + <groupId>org.apache.nifi</groupId> + <artifactId>http-context-map-nar</artifactId> + <version>0.0.1-SNAPSHOT</version> <type>nar</type> </dependency> <dependency>
